通過vue-cli構(gòu)建vue項(xiàng)目
vue init webpack vue-music
會出現(xiàn)以下的配置選項(xiàng)
Project name vue-music //項(xiàng)目名稱
? Project description vue組件化開發(fā)音樂播放器 //項(xiàng)目描述
? Author hyj //作者
? Vue build runtime //這里選第二個,使用vue文件寫項(xiàng)目
1.Runtime + Compiler: recommended for most users
2.Runtime-only: about 6KB lighter min+gzip, but templates (or any Vue-specific HTML) are ONLY allowed in .vue files - render functions are required el
sewhere
? Install vue-router? Yes //是否使用vue-router
? Use ESLint to lint your code? Yes //是否使用ESLint
? Pick an ESLint preset Standard //使用ESLint的那種模式
? Set up unit tests No //是否使用測試
? Setup e2e tests with Nightwatch? No //是否使用測試
? Should we run `npm install` for you after the project has been created? (recommended) npm //使用哪種包管理工具
如果是版本比較地的vue-cli吸重,這里就需要自己手動安裝依賴薪韩,如果版本較高的話,會自動安裝依賴包省去了npm install
cd vue-music
npm install
npm run dev
npm run dev打開