# vue3-depth-study **Repository Path**: Alan-Xia/vue3-depth-study ## Basic Information - **Project Name**: vue3-depth-study - **Description**: No description available - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-05 - **Last Updated**: 2023-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue3学习 ## Vue3最大的特点 编辑时的优化 vite按需加载 现代浏览器都支持import了 ```javascript import xx from './a.js' // 浏览器会发出一个网络请求 ``` vite拦截这个请求,去做vue相关的编译、解析等,实现了按需加载的能力 不用打包,npm run dev秒开,build走的是rollup打包