Vue全家桶解析时间太长

https://img2.mukewang.com/5c79f9340001a1e206310269.jpg

TIPS: 请求为本地, 网络很快, 主要是JS 代码解析阻塞导致白屏时间过久

如图所示, javascript 在手机浏览器中加载速度过慢, 加上网络请求等平常会达到2s左右的时间才能展示首页, 请问各位大佬有什么解决方案吗

以尝试以下方案
  1. 按需加载router

  2. 第三方库打入一个包

  3. 基本代码优化

想用但是条件不予许
  1. SSR


绝地无双
浏览 410回答 1
1回答

慕雪6442864

// router.jsimport Vue from 'vue'import Router from 'vue-router'Vue.use(Router)export function createRouter () {  return new Router({    mode: 'history',    routes: [      { path: '/', component: () => import('./components/Home.vue') },      { path: '/item/:id', component: () => import('./components/Item.vue') }    ]  })}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript