mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 15:41:32 +08:00
feat(chart): add useEcharts and useApexChart demo
This commit is contained in:
33
src/router/menus/modules/demo/charts.ts
Normal file
33
src/router/menus/modules/demo/charts.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import type { MenuModule } from '/@/router/types.d';
|
||||
const menu: MenuModule = {
|
||||
orderNo: 500,
|
||||
menu: {
|
||||
name: '图表',
|
||||
path: '/charts',
|
||||
children: [
|
||||
{
|
||||
path: '/echarts',
|
||||
name: 'Echarts',
|
||||
children: [
|
||||
{
|
||||
path: '/map',
|
||||
name: '地图',
|
||||
},
|
||||
{
|
||||
path: '/line',
|
||||
name: '折线图',
|
||||
},
|
||||
{
|
||||
path: '/pie',
|
||||
name: '饼图',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/apexChart',
|
||||
name: 'ApexChart',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
export default menu;
|
Reference in New Issue
Block a user