mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-05-22 04:39:32 +08:00
17 lines
324 B
TypeScript
17 lines
324 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const echart: AppRouteRecordRaw = {
|
|
path: '/echart',
|
|
name: 'Echart',
|
|
component: () => import('@/views/echart/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Echart'),
|
|
icon: 'echart',
|
|
order: 1,
|
|
},
|
|
}
|
|
|
|
export default echart
|