#安裝**映象#安裝vue-cli
cnpm install vue-cli -g
#檢視是否安裝成功
vue -v
初始化專案 --projectdemo 專案名
vue init webpack projectdemo
? project name demo //專案名稱? project description this is demo //專案描述
? author ananiha // 作者
// 然後回車
? install vue-router? y //y 安裝路由
? use eslint to lint your code? n // n
? set up unit tests no // n
? setup e2e tests with nightwatch? n // n
? should we run `npm install` for you after the project has been cr
? should we run `npm install` for you after the project has been cr
? should we run `npm install` for you after the project has been cr
mended) (use arrow keys)
yes, use npm
> yes, use yarn
no, i will handle that myself
//回車
to get started:
cd demo
npm run dev
documentation can be found at
//根據以上提示輸入
cd demo //進入目錄
cnmp install //
提示會少這一命令 如果根據提示啟動失敗加這一句
npm run dev //
啟動 會自己跳轉瀏覽
專案初始化 vue cli
一 輸入命令 vue init template name project name template name 有5種 webpack 常用 webpack browserfy browserfy project name 二 之後跟著提示輸入命令 porject name 專案名 盡量不要大寫 ...
VUE CLI初始化專案
用vue init命令來初始化專案,具體使用方法如下 vue init init 表示要用vue cli來初始化專案 表示模板名稱,vue cli官方提供的5種模板 webpack 乙個全面的webpack vue loader的模板,功能包括熱載入,linting,檢測和css擴充套件。webpa...
使用vue cli初始化vue專案
在專案中使用vue我使用vue cli腳手架搭建專案 1.先安裝nodejs 2.使用npm install g vue cli npm install g nrm nrm ls 即可檢視npm 的源利器有哪些 nrm use 切換npm的源利器 3.vue version 4.vue init w...