mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 13:55:39 +08:00
35 lines
691 B
TypeScript
35 lines
691 B
TypeScript
import type { MenuModule } from '/@/router/types.d';
|
|
|
|
const menu: MenuModule = {
|
|
orderNo: 500,
|
|
menu: {
|
|
name: 'routes.demo.charts.charts',
|
|
path: '/charts',
|
|
children: [
|
|
{
|
|
path: 'apexChart',
|
|
name: 'routes.demo.charts.apexChart',
|
|
},
|
|
{
|
|
path: 'echarts',
|
|
name: 'Echarts',
|
|
children: [
|
|
{
|
|
path: 'map',
|
|
name: 'routes.demo.charts.map',
|
|
},
|
|
{
|
|
path: 'line',
|
|
name: 'routes.demo.charts.line',
|
|
},
|
|
{
|
|
path: 'pie',
|
|
name: 'routes.demo.charts.pie',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default menu;
|