| | |
| | | import type { AppRouteModule } from '/@/router/types'; |
| | | import type { AppRouteModule } from '@/router/types'; |
| | | |
| | | import { getParentLayout, LAYOUT } from '/@/router/constant'; |
| | | import { t } from '/@/hooks/web/useI18n'; |
| | | import { getParentLayout, LAYOUT } from '@/router/constant'; |
| | | import { t } from '@/hooks/web/useI18n'; |
| | | |
| | | const charts: AppRouteModule = { |
| | | path: '/charts', |
| | |
| | | meta: { |
| | | title: t('routes.demo.charts.baiduMap'), |
| | | }, |
| | | component: () => import('/@/views/demo/charts/map/Baidu.vue'), |
| | | component: () => import('@/views/demo/charts/map/Baidu.vue'), |
| | | }, |
| | | { |
| | | path: 'aMap', |
| | |
| | | meta: { |
| | | title: t('routes.demo.charts.aMap'), |
| | | }, |
| | | component: () => import('/@/views/demo/charts/map/Gaode.vue'), |
| | | component: () => import('@/views/demo/charts/map/Gaode.vue'), |
| | | }, |
| | | { |
| | | path: 'googleMap', |
| | |
| | | meta: { |
| | | title: t('routes.demo.charts.googleMap'), |
| | | }, |
| | | component: () => import('/@/views/demo/charts/map/Google.vue'), |
| | | component: () => import('@/views/demo/charts/map/Google.vue'), |
| | | }, |
| | | |
| | | { |
| | |
| | | { |
| | | path: 'map', |
| | | name: 'Map', |
| | | component: () => import('/@/views/demo/charts/Map.vue'), |
| | | component: () => import('@/views/demo/charts/Map.vue'), |
| | | meta: { |
| | | title: t('routes.demo.charts.map'), |
| | | }, |
| | |
| | | { |
| | | path: 'line', |
| | | name: 'Line', |
| | | component: () => import('/@/views/demo/charts/Line.vue'), |
| | | component: () => import('@/views/demo/charts/Line.vue'), |
| | | meta: { |
| | | title: t('routes.demo.charts.line'), |
| | | }, |
| | |
| | | { |
| | | path: 'pie', |
| | | name: 'Pie', |
| | | component: () => import('/@/views/demo/charts/Pie.vue'), |
| | | component: () => import('@/views/demo/charts/Pie.vue'), |
| | | meta: { |
| | | title: t('routes.demo.charts.pie'), |
| | | }, |