0--前言
VUE环境搭建很简单,主要就是安装node、安装visual studio code,下面简单介绍;
1-1、安装node
去官网下载node安装包,安装即可,安装后可用 node -v验证;
1-2、npm更改为淘宝镜像
npm config set registry https://registry.npm.taobao.org
1-3、安装webpack
npm install webpack -g
1-4、安装Vue-cli
npm install vue-cli -g
----------------华丽的分割线---------------------安装和使用yarn------------------------------------
npm下载和管理依赖包经常巨慢,慢还能忍受,但是经常各种错误,这个不能忍,所有,实际项目中,请用yarn,npm也可以一同混用,
1-5、安装yarn
npm i yarn -g verbose
1-6、更改淘宝镜像源
yarn config set registry https://registry.npm.taobao.org
-----------------------华丽的分割线----------------------------------------------------------------
1-7、安装visual studio code
官网去下载和安装visual studio code
完毕,环境就搭建好了~