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

vue2.0的按需加载的一些疑问

vue2.0的按需加载的一些疑问

慕森王 2019-02-14 18:19:49
import App from '../App'const startIndex = r => require.ensure([], () => r(require('../pages/start/startIndex')), 'startIndex')const second = r => require.ensure([], () => r(require('../pages/second/second')), 'second')export default [{  path: '/',  component: App,  children: [    {      path: '/',      name: 'startIndex',      component: startIndex    },    {      path: '/second',      name: 'second',      component: second    }  ]}]const startIndex = r => require.ensure([], () => r(require('../pages/start/startIndex')), 'startIndex')这样一句话就实现了按需加载,可以解释一下为什么吗,实在找不到资料
查看完整描述

1 回答

?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

实际上,这是webpack的功能,跟vue关系不大,参见文档 - webpack 代码分离。vue-router的文档 - 懒加载也提到了。


查看完整回答
反对 回复 2019-02-16
  • 1 回答
  • 0 关注
  • 354 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信