1. 程式人生 > >vue工程按業務路由打包,頁面只加載對應資源

vue工程按業務路由打包,頁面只加載對應資源

修改路由表:src/router/index.js

import Vue from 'vue'; import Router from 'vue-router';
// 主要寫法如下 const Test = r => require.ensure([], () => r(require('@/components/test/test.vue')), 'test');   const routes = [{     path: '/',     redirect: '/error/404'   },   {     path: '/test',     name: 'test',     component: Test }];   export default new Router({   mode: 'history',   base: '/',   routes: routes })