1.安装 nodeJS(官网下载)
node -v
查看版本
2.安装 vue-cli 脚手架
npm install -g vue-cli
3.安装 webpack 模块打包器
创建vueProject文件夹,然后cmd进入该位置
vue init webpack
? Generate project in current directory? y
? Project name vue-project
? Project description vue-demo
? Author lion
? Vue build standalone(选第一个)
? Install vue-router? y
? Use ESLint to lint your code? n
? Set up unit tests n
? Setup e2e tests with Nightwatch? n
? Should we run npm install for you after... npm
4. 安装所需依赖
npm install
5.运行项目
npm run dev
-- Your application is running here: http://localhost:8080
6.打开浏览器,访问该地址
http://localhost:8080