XiaoDaiGua-Ray cda4216493 v4.4.0
2023-11-25 11:36:32 +08:00

18 lines
363 B
TypeScript

import { t } from '@/hooks/web'
import { LAYOUT } from '@/router/constant'
import type { AppRouteRecordRaw } from '@/router/type'
const table: AppRouteRecordRaw = {
path: '/table',
name: 'TableView',
component: () => import('@/views/demo/table/index'),
meta: {
i18nKey: t('menu.Table'),
icon: 'other',
order: 2,
},
}
export default table