赞
踩
序号 | 环境 | 描述 | Mac安装 | Ubuntu安装 | 查看版本 |
---|---|---|---|---|---|
1 | Node.js | 运行环境 | brew install nodejs sudo chmod 777 /usr/local/lib/node_modules/ | sudo apt-get install nodejs | node -v |
2 | npm | 包管理器 | npm install -g cnpm --registry=https://registry.npm.taobao.org | sudo apt-get npm npm install -g cnpm --registry=https://registry.npm.taobao.org | |
3 | webpack | vue打包工具 | cnpm install webpack -g | cnpm install webpack -g | |
4 | vue-cli | vue模板生成器 | 2.x cnpm install vue-cli -g 3.x cnpm install @vue/cli -g | cnpm install @vue/cli -g | vue -V |
sudo chmod 777 /usr/local/lib/node_modules
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 卸载旧版本2.x
cnpm uninstall -g vue-cli
# 安装新版本3.x
cnpm install -g @vue/cli
cd path/to/project/Vue
vue init webpack 项目名称
3.x
vue create 项目名称
2.x出现了downloading template一直转圈圈,所以选择3.x
vue init webpack prj-name
3.x
vue create prj-name
选择默认模板。
模板选择:默认和手动两种。
cd prj-name
cnpm install
cnpm run dev
cd datas_show
npm run serve
http://localhost:8080
【参考文献】
[1]https://www.jianshu.com/p/2273e26ff6e8
[2]https://www.jianshu.com/p/60d4deda978a
[3]https://www.jianshu.com/p/cc722eba1f46
[4]https://blog.csdn.net/sinat_33384251/article/details/93127561
[5]https://www.jianshu.com/p/02b12c600c7b
[6]https://cli.vuejs.org/zh/guide/creating-a-project.html#使用图形化界面
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。