Vue解决打包项目后js文件非常大,导致首次加载页面非常慢

1 1、使用cdn方式引入不常修改的第三方插件
2 2、使用路由懒加载,例如:
3 {
4   path: "*",
5   component: resolve => require(['../views/404.vue'],resolve)
6 },
// 第二种路由懒加载 
component: () => import('../views/404.vue')