Vue路由懒加载的作用以及用法

140 阅读1分钟

作用

按需加载页面 优化首屏加载

用法

在router/index中使用

//需要懒加载的路径
component: () => import('@/views/dashboard/index')

image.png