16 lines
360 B
JavaScript
Raw Normal View History

2022-08-02 10:16:07 +08:00
/*
* @Description:
* @Author: czw (725551805@qq.com)
* @Date: 2022-02-25 10:40:25
* @LastEditors: czw (725551805@qq.com)
* @LastEditTime: 2022-02-25 12:18:31
* @FilePath: /glxt/src/router/index2.js
*/
import router from './index'
import Home from './index1'
Home.forEach(element => {
router.addRoute(element) // 动态添加更多的路由规则
})