2021-07-16 15:03:45 +08:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Router from 'vue-router';
|
2021-07-15 11:56:51 +08:00
|
|
|
|
2021-07-16 15:03:45 +08:00
|
|
|
Vue.use(Router);
|
2021-07-15 11:56:51 +08:00
|
|
|
|
|
|
|
/* Router Modules */
|
2021-07-16 15:03:45 +08:00
|
|
|
import policyPage from './modules/policyPage';
|
|
|
|
import configPage from './modules/configPage';
|
2021-07-15 11:56:51 +08:00
|
|
|
|
|
|
|
export const DynamicRoutes = [
|
2021-07-16 15:03:45 +08:00
|
|
|
// 政策管理
|
2021-07-15 11:56:51 +08:00
|
|
|
policyPage,
|
2021-07-16 15:03:45 +08:00
|
|
|
// 前端配置
|
|
|
|
configPage
|
|
|
|
// frontEndConfig
|
|
|
|
];
|
2021-07-15 11:56:51 +08:00
|
|
|
|
2021-07-16 15:03:45 +08:00
|
|
|
export default DynamicRoutes;
|