vnext-analysis icon indicating copy to clipboard operation
vnext-analysis copied to clipboard

🚀 Vue3 体系源码分析、流程标记、思维导图、Mini 版实现。

Results 1 vnext-analysis issues
Sort by recently updated
recently updated
newest added

**编写时使用 yarn v1.x 、node v16.x** ## Vue 调试 - 构建开发版本 ```bash cd vue-next-3.2.0 yarn install yarn build ``` - 构建完成后会有以下文件 ![image](https://github.com/haiweilian/vnext-analysis/assets/34850199/679f4fb5-a2da-4b5e-99f7-e59d1a028340) - 在 Chrome 中调试 由于需要写很多的小测试,也避免经过工具转换更复杂所以就直接写在 html 了。可以通过 [LiveServer](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) 启动一个静态服务在浏览器调试。...