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