mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
19 lines
388 B
TypeScript
19 lines
388 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
import { LAYOUT } from '@/router/constant/index'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const axios: AppRouteRecordRaw = {
|
|
path: '/axios',
|
|
name: 'RAxios',
|
|
component: () => import('@/views/axios/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Axios'),
|
|
icon: 'axios',
|
|
order: 3,
|
|
keepAlive: true,
|
|
},
|
|
}
|
|
|
|
export default axios
|