Blame view

src/router/menus/modules/demo/iframe.ts 537 Bytes
1
import type { MenuModule } from '/@/router/types';
2
import { t } from '/@/hooks/web/useI18n';
vben authored
3
陈文彬 authored
4
5
6
const menu: MenuModule = {
  orderNo: 1000,
  menu: {
7
    name: t('routes.demo.iframe.frame'),
陈文彬 authored
8
9
10
    path: '/frame',
    children: [
      {
vben authored
11
        path: 'doc',
12
        name: t('routes.demo.iframe.doc'),
陈文彬 authored
13
14
      },
      {
15
16
17
18
        path: 'antv',
        name: t('routes.demo.iframe.antv'),
      },
      {
19
        path: 'https://vvbin.cn/doc-next/',
20
        name: t('routes.demo.iframe.docExternal'),
陈文彬 authored
21
22
23
24
25
      },
    ],
  },
};
export default menu;