1.配置开发环境
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
npm install -g @vue/cli
vue create hello-world
npm run serve
2.code 插件
Vue 2 Snippets
Vetur
3.如果npm安装报错
npm cache clean --force
如果npm不能安装,就用cnpm
1.安装cnpm
npm install -g cnpm —registry=https://registry.npm.taobao.org
2.vue-cli
二.创建一个vue项目
vue create 01vue-demo
然后
选择默认的设置
三.启动项目
- 使用vscode将项目打开
- 调用命令 npm run serve
四、删除
五、使用
六、npm安装和yarn
npm i xxx 安装语句
yarn add xxx 安装语句