1. 程式人生 > >Vue腳手架搭建專案

Vue腳手架搭建專案

全域性安裝vue腳手架

$ npm install -g vue-cli

解除安裝方法

$ npm uninstall -g vue-cli

檢視vue版本(注意:大寫的V)

$ vue -V

建立專案

$ vue init webpack vue-app

? Project name vue-app

? Project description Vue Project

? Author ProsperLee <[email protected]>

? Vue build (Use arrow keys)

> Runtime + Compiler: recommended for most users

Runtime-only: about 6KB lighter min+gzip, but templates (or any Vue-specific HTML) are ONLY allowed in .vue files - render functions are required elsewhere

? Install vue-router? No

? Use ESLint to lint your code? No? 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)

(Use arrow keys)

> Yes, use NPM

  Yes, use Yarn

  No, I will handle that myself

專案根目錄下執行:

$ npm run dev

安裝路由

$ npm install vue-router --save-dev

安裝vue-resource

$ npm install vue-resource --save-dev

安裝WangEditor

$ npm install wangeditor --save-dev

打包專案

$ npm run dev