mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-05-18 01:45:09 +08:00
18 lines
370 B
TypeScript
18 lines
370 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
import { LAYOUT } from '@/router/constant/index'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const table: AppRouteRecordRaw = {
|
|
path: '/table',
|
|
name: 'TableView',
|
|
component: () => import('@/views/table/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Table'),
|
|
icon: 'other',
|
|
order: 2,
|
|
},
|
|
}
|
|
|
|
export default table
|