其实路由懒加载就是在写路由表的时候 最最基本的写法是 routes:[{ path:'/about', component:About //这是在之前引入的组件 }] 路由懒加载的写法 routes:[{ path:'/about', component:()=>import('./component/About') }]