一、VUE3网址:
1、VUE3官网英文https://v3.vuejs.org
2、VUE3中文网https://v3.cn.vuejs.org
3、VITE文档英文https://vitejs.dev/guide/features.html
二、创建Vue3的APP
1、利用Vite
npm init vite-app test01
2、进入APP目录
cd test01
3、安装依赖
npm install
4、运行APP
npm run dev
三、解决npm安装依赖缓慢的问题
1、使用阿里巴巴的镜像服务器
npm install -g cnpm --registry=https://registry.npm.taobao.org
2、利用cnpm安装需要的模块
cnpm install [name]
四、解决IIS跨域访问的问题
在IIS的网站或允许访问文件夹的“HTTP响应标头”中添加Access-Control-Allow-Origin值为*
五、视频教程
评论 (0)