Vue快速启动
VUE快速启动
建议下载nvm,管理node.js版本,可以指定 下载or卸载or使用 xx.xx.xx版本
nvm控制node.js版本 ,vue要求node.js至少16以上,node.js 包含npm,下载node.js即可
查看npm镜像使用状态。如不是淘宝镜像推荐切换为淘宝镜像,可加快下载速度
npm config get registry
返回https://registry.npm.taobao.org/,说明配置的是淘宝镜像
返回https://registry.npmjs.org/,说明配置的是淘宝镜像
设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org/
设置官方镜像源
npm config set registry https://registry.npmjs.org
vue2安装 https://v2.cn.vuejs.org/v2/guide/installation.html
VUE2中文文档 https://v2.cn.vuejs.org/
VUE CLI https://cli.vuejs.org/zh/
安装VUE CLI
npm install -g @vue/cli
在新建的目录下打开cmd窗口,创建一个hello-world
vue create hello-world