routes.js 265 B

123456789101112131415
  1. 'use strict';
  2. import load from '@/router/common/load.js';
  3. /**
  4. * [routes 动态路由]
  5. * @type {Array}
  6. */
  7. const routes = [
  8. /**
  9. * [path 客服系统首页]
  10. * @type {String}
  11. */
  12. {path:'/',name:'web_index',component:load.web.index}
  13. ];
  14. export default routes;