Vue-cli 安裝
安裝node
通過npm安裝Vue-cli
nmp install -g vue-cli //window全局安裝vue-cli腳手架工具。
sudo nmp install -g vue-cli //Mac全局安裝vue-cli腳手架工具。-
vue用法介紹
//cmd
=>vue//用法介紹
Usage: vue <command> [options]
Commands:
init generate a new project from a template//從一個(gè)模板生成一個(gè)新項(xiàng)目
list list available official templates //列出可用的官方模板
build prototype a new project//原型的一個(gè)新項(xiàng)目
help [cmd] display help for [cmd]//顯示幫助
Options:
-h, --help output usage information //輸出使用信息
-V, --version output the version number//輸出版本號(hào)
=>vue init webpack sell
? Project name sell
? Project description sell app
? Author summery 1251588243@qq.com
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Standard
? Setup unit tests with Karma + Mocha? No
? Setup e2e tests with Nightwatch? Novue-cli · Generated "sell". To get started: cd sell npm install npm run dev Documentation can be found at https://vuejs-templates.github.io/webpack =>cd sell =>npm install =>npm run dev //注意端口http://localhost:8080有沒有被占用