1.安装依赖
win10安装node.js
2.安装vue/cli和vue/cli-service-global
npm install -g @vue/cli
npm install -g @vue/cli-service-global
3.安装验证
vue --version
4.命令行创建项目
vue create hello-world
建议修改国内源(y)和使用默认设置(回车)创建项目
5.命令行运行项目
cd hello-world
npm run serve
6.安装eslint(失败)
vue add eslint
7.图形界面创建项目
vue ui
手动创建测试项目