安裝 vue-clijavascript
安裝好了 node,咱們能夠直接全局安裝 vue-cli:vue
npm install -g vue-cli
安裝完成後,能夠使用 vue -V (注意 V 大寫)查看是否安裝成功。java
生成項目 node
vue init webpackwebpack
E:\webApp>vue init webpack ? Generate project in current directory? Yes 'git' �����ڲ����ⲿ���Ҳ���ǿ����еij��� �������ļ� ? Project name vue-music //你項目的名字 ? Project description 音樂播放器 //項目的描述 ? Author yu //項目的做者 ? Vue build runtime ? Install vue-router? Yes //是否安裝路由 ? Use ESLint to lint your code? Yes //es6代碼檢查器 規範你寫的代碼 ? Pick an ESLint preset Standard //選es6標準的規則 ? Setup unit tests with Karma + Mocha? No //測試相關的 ? Setup e2e tests with Nightwatch? No //單元測試 vue-cli · Generated "webApp". To get started: npm install npm run dev Documentation can be found at https://vuejs-templates.github.io/webpack
而後執行 npm install npm run devgit