将项目上传到coding
git init
git add .
git commit -m "first commit"
git push -u origin master
创建vue-cli
1.安装 cnpm
搜索淘宝镜像
$ npm install -g cnpm --registry=[https://registry.npm.taobao.org]
(https://registry.npm.taobao.org)
2.安装 webpack
cnpm install webpack -g
3.安装 vue-cli
cnpm install vue-cli -g
注意:以上只需要安装一次
4.使用vue-cli搭建项目
例如:vue init webpack webpack-demo
vue init 模板名称 项目名称
打包文件
cnpm run build
网友评论