摘要: 一、首先要了解概念:module,chunk 和 bundle 到底是什么? module,chunk 和 bundle 其实就是同一份逻辑代码在不同转换场景下的取了三个名字: 我们直接写出来的是 module,webpack 处理时是 chunk,最后生成浏览器可以直接运行的 bundle。 参考 阅读全文
posted @ 2021-12-20 14:02 菜鸟小何 阅读(214) 评论(0) 推荐(0) 编辑
摘要: beforeEach((to, from, next) => { next('/logon') } 上面这串代码我们可以看成为 beforeEach((to, from, next) => { beforeEach(('/logon', from, next) => { beforeEach(('/ 阅读全文
posted @ 2021-12-20 10:07 菜鸟小何 阅读(5257) 评论(0) 推荐(1) 编辑