Former-commit-id: 5b1d67714eba93e189596ea670e99819bd6db80f Former-commit-id: 75e5cf1122c1911777e3df615893ceec8aaa142a Former-commit-id: 128ee53f52adf4560cbe084c70d48d70d3fa81e0
21 lines
411 B
JavaScript
21 lines
411 B
JavaScript
import * as business from './_business'
|
|
import * as chart from './_chart'
|
|
import * as plugin from './_plugin'
|
|
import * as components from './_components'
|
|
|
|
// 菜单 这里的顺序决定了在顶栏显示的顺序
|
|
export const menu = [
|
|
plugin.menu,
|
|
components.menu,
|
|
chart.menu,
|
|
business.menu
|
|
]
|
|
|
|
// 路由
|
|
export const router = [
|
|
business.router,
|
|
chart.router,
|
|
plugin.router,
|
|
components.router
|
|
]
|