feat(component): Add CountTo component and Echart component

This commit is contained in:
kailong321200875
2022-01-22 19:39:44 +08:00
parent dad7330634
commit e20fa76cad
15 changed files with 461 additions and 48 deletions

View File

@@ -37,6 +37,29 @@ export const constantRouterMap: AppRouteRecordRaw[] = [
]
export const asyncRouterMap: AppRouteRecordRaw[] = [
{
path: '/dashboard',
component: Layout,
redirect: '/dashboard/analysis',
name: 'Dashboard',
meta: {
title: t('router.dashboard'),
icon: 'ant-design:dashboard-filled',
alwaysShow: true
},
children: [
{
path: 'analysis',
component: () => import('@/views/Dashboard/Analysis.vue'),
name: 'Analysis',
meta: {
title: t('router.analysis'),
noCache: true,
affix: true
}
}
]
},
{
path: '/level',
component: Layout,