You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
431 B
23 lines
431 B
import BasicLayout from '@/layouts/home'; |
|
|
|
const meta = {}; |
|
|
|
const pre = 'stat-'; |
|
|
|
export default { |
|
path: '/stat', |
|
name: 'stat', |
|
redirect: { |
|
name: `${pre}list` |
|
}, |
|
meta, |
|
component: BasicLayout, |
|
children: [ |
|
{ |
|
name: `${pre}list`, |
|
path: `list`, |
|
component: () => import('@/pages/stat/list'), |
|
meta: { title: '数据统计' } |
|
}, |
|
] |
|
};
|
|
|