上传coding 创建vue-cli项目 压缩文件

1,下载淘宝镜像

      npm install -g cnpm --registry=https://registry.npm.taobao.org

2,上传coding

      git init
      git add  .
      git commit -m "first commit"
      git push -u origin master

3,创建vue-cli项目

        //安装
        webpack npm install webpack -g 
        //检测 
         cnpm install vue-cli -g 
        //搭建项目
         vue init webpack  domel
        //下载依赖
        cnpm install 
        //开服务
        npm run dev 

4,压缩文件

      cnpm run build

你可能感兴趣的:(上传coding 创建vue-cli项目 压缩文件)