Vue CLI2之创建项目

以下是使用命令行的方式创建项目

vue init webpack foldername//foldername中不能包含大写字母
project name//此处需设置项目名称,如果直接敲回车则默认为文件夹名称
project description 
Author 会默认从gitconfig文件中提取作者信息
Vue build//runtime or runtime+compiler
install vue-router?
Use Eslint to lint your code?//Eslint会检测代码规范
Set up unit tests
Set up e2e tests with Nightwatch?//e2e为端到端测试
Should we run 'npm install' for you after the project has been created?

你可能感兴趣的:(笔记,前端,英文)