123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import type { MenuModule } from '/@/router/types';
- import { t } from '/@/hooks/web/useI18n';
- const menu: MenuModule = {
- orderNo: 19,
- menu: {
- name: t('routes.demo.feat.feat'),
- path: '/feat',
- tag: {
- dot: true,
- },
- children: [
- {
- path: 'icon',
- name: t('routes.demo.feat.icon'),
- },
- {
- path: 'tabs',
- name: t('routes.demo.feat.tabs'),
- },
- {
- path: 'context-menu',
- name: t('routes.demo.feat.contextMenu'),
- },
- {
- path: 'download',
- name: t('routes.demo.feat.download'),
- },
- {
- path: 'click-out-side',
- name: t('routes.demo.feat.clickOutSide'),
- },
- {
- path: 'img-preview',
- name: t('routes.demo.feat.imgPreview'),
- },
- {
- path: 'copy',
- name: t('routes.demo.feat.copy'),
- },
- {
- path: 'msg',
- name: t('routes.demo.feat.msg'),
- },
- {
- path: 'watermark',
- name: t('routes.demo.feat.watermark'),
- },
- {
- path: 'ripple',
- name: t('routes.demo.feat.ripple'),
- tag: {
- content: 'new',
- },
- },
- {
- path: 'full-screen',
- name: t('routes.demo.feat.fullScreen'),
- },
- {
- path: 'error-log',
- name: t('routes.demo.feat.errorLog'),
- },
- {
- name: t('routes.demo.excel.excel'),
- path: 'excel',
- children: [
- {
- path: 'customExport',
- name: t('routes.demo.excel.customExport'),
- },
- {
- path: 'jsonExport',
- name: t('routes.demo.excel.jsonExport'),
- },
- {
- path: 'arrayExport',
- name: t('routes.demo.excel.arrayExport'),
- },
- {
- path: 'importExcel',
- name: t('routes.demo.excel.importExcel'),
- },
- ],
- },
- {
- path: 'testTab',
- name: t('routes.demo.feat.tab'),
- children: [
- {
- path: 'id1',
- name: t('routes.demo.feat.tab1'),
- },
- {
- path: 'id2',
- name: t('routes.demo.feat.tab2'),
- },
- ],
- },
- ],
- },
- };
- export default menu;
|