Vue2-路由级别的延迟加载不起作用?

问题描述 投票:0回答:1

目前,我正在测试Vue.js,我想知道它是否具有开箱即用的延迟加载功能。也许我弄错了,但似乎无法正常工作。

我做了什么:

我通过Vue CLI 3“ vue create vtest”创建了一个新项目,然后添加了2个新组件,并将它们作为带有webpack块名称的异步组件添加到路由器。 Vue的入门指南中的代码指导中有关代码拆分的内容为:

router / index.ts

// this generates a separate chunk (about.[hash].js) for this route // which is lazy-loaded when the route is visited.

因此,当我访问这些路线之一时,它会延迟加载。如果我不访问它们,它们将不会加载。好吧,无论如何它们都会加载,例如,当我只访问原始的Home组件时,实际上并没有使用我的3条分离的,代码分割的路由中的About,Foo和Bar。但是,正如您在我的屏幕快照中看到的那样,其中显示了Home组件加载的所有请求。

enter image description here

这是我的路线:

const routes = [
  {
    path: '/',
    name: 'Home',
    component: Home,
  },
  {
    path: '/about',
    name: 'About',
    // route level code-splitting
    // this generates a separate chunk (about.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import(/* webpackChunkName: "about" */ '../views/About.vue'),
  },
  {
    path: '/foo',
    name: 'Foo',
    component: () => import(/* webpackChunkName: "foo" */ '../views/Foo.vue'),
  },
  {
    path: '/bar',
    name: 'Bar',
    component: () => import(/* webpackChunkName: "bar" */ '../views/Bar.vue'),
  },
];

这是我的存储库,与Vue CLI的入门模板几乎没有什么区别:

https://github.com/hellokvn/vue-test

vue.js webpack vuejs2 lazy-loading vue-cli
1个回答
0
投票

它可能正在预取那些惰性加载块。如果要进一步测试,可以关闭预取。

ref:prefetching

© www.soinside.com 2019 - 2024. All rights reserved.