|
@@ -3,24 +3,24 @@ import type { AppRouteModule } from '@/router/types';
|
|
|
import { LAYOUT } from '@/router/constant';
|
|
|
import { t } from '@/hooks/web/useI18n';
|
|
|
|
|
|
-const setup: AppRouteModule = {
|
|
|
- path: '/setup',
|
|
|
- name: 'SetupDemo',
|
|
|
+const steps: AppRouteModule = {
|
|
|
+ path: '/steps',
|
|
|
+ name: 'StepsDemo',
|
|
|
component: LAYOUT,
|
|
|
- redirect: '/setup/index',
|
|
|
+ redirect: '/steps/index',
|
|
|
meta: {
|
|
|
orderNo: 90000,
|
|
|
hideChildrenInMenu: true,
|
|
|
icon: 'whh:paintroll',
|
|
|
- title: t('routes.demo.setup.page'),
|
|
|
+ title: t('routes.demo.steps.page'),
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
|
path: 'index',
|
|
|
- name: 'SetupDemoPage',
|
|
|
- component: () => import('@/views/demo/setup/index.vue'),
|
|
|
+ name: 'StepsDemoPage',
|
|
|
+ component: () => import('@/views/demo/steps/index.vue'),
|
|
|
meta: {
|
|
|
- title: t('routes.demo.setup.page'),
|
|
|
+ title: t('routes.demo.steps.page'),
|
|
|
icon: 'whh:paintroll',
|
|
|
hideMenu: true,
|
|
|
},
|
|
@@ -28,4 +28,4 @@ const setup: AppRouteModule = {
|
|
|
],
|
|
|
};
|
|
|
|
|
|
-export default setup;
|
|
|
+export default steps;
|