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