Vue代码分割懒加载

  本文介绍在vue项目中使用webpack2以上版本打包时,如何做代码分割。

webpack > 2的时代,vue做代码分割懒加载更加的easy,不需要loader,不需要require.ensure。
import解决一切。

分割层级

Vue代码分割懒加载包含如下几个层级:

1、 组件层级分割懒加载
2、 router路由层级
3、 Vuex 模块

组件层级代码分割

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//全局组件
Vue.component('AsyncComponent', () => import('./AsyncComponent'))
//局部注册组件
new Vue({
// ...
components: {
'AsyncComponent': () => import('./AsyncComponent')
}
})
// 如果不是default导出的模块
new Vue({
// ...
components: {
'AsyncComponent': () => import('./AsyncComponent').then({ AsyncComponent }) => AsyncComponent
}
})

路由层级代码分割

1
2
3
4
5
6
7
8
const AsyncComponent= () => import('./AsyncComponent')
new VueRouter({
routes: [
{ path: '/test', component: AsyncComponent}
]
})

Vuex 模块代码分割,vuex中有动态注册模块方法,同时也是加上import

1
2
3
4
5
const store = new Vuex.Store()
import('./store/test').then(testModule => {
store.registerModule('test', testModule)
})

总结

在一般项目中,我们按照router和components层面分割(或者只使用router分割)就足够了。大型项目可能三者都会用到,但用法都很简单,不是么?

坚持原创技术分享,您的支持将鼓励我继续创作!