mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const iframe: AppRouteRecordRaw = {
|
|
path: '/iframe',
|
|
name: 'IframeDemo',
|
|
component: () => import('@/views/iframe/index'),
|
|
meta: {
|
|
icon: 'rely',
|
|
order: 2,
|
|
noLocalTitle: 'iframe',
|
|
},
|
|
}
|
|
|
|
export default iframe
|