1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| import type { AppRouteModule } from '@/router/types';
|
| import { LAYOUT } from '@/router/constant';
| import { t } from '@/hooks/web/useI18n';
|
| const IFrame = () => import('@/views/sys/iframe/FrameBlank.vue');
|
| const iframe: AppRouteModule = {
| path: '/frame',
| name: 'Frame',
| component: LAYOUT,
| redirect: '/frame/doc',
| meta: {
| orderNo: 1000,
| icon: 'ion:tv-outline',
| title: t('routes.demo.iframe.frame'),
| },
|
| children: [
| {
| path: 'doc',
| name: 'Doc',
| component: IFrame,
| meta: {
| frameSrc: 'https://doc.vvbin.cn/',
| title: t('routes.demo.iframe.doc'),
| },
| },
| {
| path: 'antv',
| name: 'Antv',
| component: IFrame,
| meta: {
| frameSrc: 'https://www.antdv.com/docs/vue/introduce-cn/',
| title: t('routes.demo.iframe.antv'),
| },
| },
| {
| path: 'https://doc.vvbin.cn/',
| name: 'DocExternal',
| component: IFrame,
| meta: {
| title: t('routes.demo.iframe.docExternal'),
| },
| },
| ],
| };
|
| export default iframe;
|
|