vue路由懒加载

代码:

{
    path: '/home',
    name: 'home',
    component: () => import('@/views/home/index')
  }
或者
const home = () => import('@/views/home/index');
把component那里改成component:home就好了。
原文地址:https://www.cnblogs.com/xsj1989/p/13391266.html