前提条件
安装Node.js;
方法一(Vue CLI)
安装:
npm install -g @vue/cli
# OR
yarn global add @vue/cli
创建一个项目:
vue create my-project
# OR
vue ui
方法二(create-vue)
创建一个项目
npm create vue@latest
tips
npm运行缓慢可以将npm镜像源切换至淘宝镜像:
npm config set registry https://registry.npmmirror.com/
还原为官方镜像源:
npm config set registry https://registry.npmjs.org/
查询当前使用的镜像源:
npm get registry