Sanakey
2024-08-29 45b43f4ff4bea965638166ff619db1ef5afcad70
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
import type { AppRouteModule } from '@/router/types';
 
import { LAYOUT } from '@/router/constant';
import { t } from '@/hooks/web/useI18n';
 
const steps: AppRouteModule = {
  path: '/steps',
  name: 'StepsDemo',
  component: LAYOUT,
  redirect: '/steps/index',
  meta: {
    orderNo: 90000,
    hideChildrenInMenu: true,
    icon: 'whh:paintroll',
    title: t('routes.demo.steps.page'),
  },
  children: [
    {
      path: 'index',
      name: 'StepsDemoPage',
      component: () => import('@/views/demo/steps/index.vue'),
      meta: {
        title: t('routes.demo.steps.page'),
        icon: 'whh:paintroll',
        hideMenu: true,
      },
    },
  ],
};
 
export default steps;