为了账号安全,请及时绑定邮箱和手机立即绑定

vue中路由按需加载的几种方式

标签:
JavaScript

使用vue-cli构建项目后,我们会在Router文件夹下面的index.js里面引入相关的路由组件,如:

import Hello from '@/components/Hello'
import Boy from '@/components/Boy'
import Girl from '@/components/Girl'

普通加载的缺点:

webpack在打包的时候会把整个路由打包成一个js文件,如果页面一多,会导致这个文件非常大,加载缓慢

1、require.ensure()实现按需加载

  • 语法:

require.ensuire(dependencies:String[],
callback:function(require),
errorCallback:function(error),chunkName:String)
  • vue中使用:

const List = resolve =>{
 require.ensuire([],()=>{ resolve(require('./list')) },'list') }

ps:会报错,不知道如何解决,知道的朋友还请告知一下,报错内容如下:
https://img1.sycdn.imooc.com//5c7bd5280001bd6d08200110.jpg

2、vue异步组件技术

在router中配置,使用这种方法可以实现按需加载,一个组件生成一个js文件

  • vue中使用:

{path: '/home',name: 'home',component:resove => require(['@/components/home'],resolve)
}

3、使用动态的import()语法(推荐使用这种)

  • vue中使用:

//没有指定webpackChunkName,每个组件打包成一个js文件const test1 = ()=>import('@/components/test1.vue') 
const test2 = ()=>import('@/components/test2.vue')//指定了相同的webpackChunkName,会合并打包成y一个js文件const test3 = ()=>import(/* webpackChunkName:'grounpTest' */ '@/components/test3.vue') 
const test4 = ()=>import(/* webpackChunkName:'grounpTest' */ '@/components/test4.vue')const router = new VueRouter({   
 routes: [
        { path: '/test1', component: test1 },
        { path: '/test2', component: test2 },
        { path: '/test3', component: test3 },
        { path: '/test4', component: test4 }
    ]
 })

注:

  • /* webpackChunkName: 'grounpTest' */使用命名chunk,一个特殊的注释语法来提供 chunk name (需要 Webpack > 2.4)

作者:smile_or

原文链接:https://www.cnblogs.com/sgs123/p/10442450.html


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消