1.先决条件: 安装了node.js(包括npm包管理器)
2.使用命令行安装
1.全局安装vue-cli
$ npm install --global vue-cli
2.创建一个基于webpack模板的新项目
$ vue init webpack my-project-name
? Project name test 项目名
? Project description test 项目描述
? Author xxx 作者名
? Vue build standalone 使用标准构建
? Install vue-router? Yes 安装路由
? 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 不使用e2e
? Should we run `npm install` for you after the project has been created? (recommended) NPM 使用npm管理包
3.进入目录
$ cd myproject-name
4.运行
$ npm run dev