feat(chart): add useEcharts and useApexChart demo

This commit is contained in:
vben
2020-10-11 14:53:04 +08:00
parent e9536b5b7c
commit 21d0ed92df
20 changed files with 1241 additions and 23 deletions

View 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;