安裝 vue-cli
安裝好了 node,我們可以直接全局安裝 vue-cli:
npm install -g vue-cli
安裝完成后,可以使用 vue -V (注意 V 大寫)查看是否安裝成功。
生成項目
vue init webpack
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 dev

