iframe.ts 537 B

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