chore: Rename the default export name (#3820)
This commit is contained in:
parent
7538c57db7
commit
679a23332f
|
|
@ -3,7 +3,7 @@ import type { AppRouteModule } from '@/router/types';
|
||||||
import { LAYOUT } from '@/router/constant';
|
import { LAYOUT } from '@/router/constant';
|
||||||
import { t } from '@/hooks/web/useI18n';
|
import { t } from '@/hooks/web/useI18n';
|
||||||
|
|
||||||
const charts: AppRouteModule = {
|
const flow: AppRouteModule = {
|
||||||
path: '/flow',
|
path: '/flow',
|
||||||
name: 'FlowDemo',
|
name: 'FlowDemo',
|
||||||
component: LAYOUT,
|
component: LAYOUT,
|
||||||
|
|
@ -25,4 +25,4 @@ const charts: AppRouteModule = {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default charts;
|
export default flow;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import type { AppRouteModule } from '@/router/types';
|
||||||
import { getParentLayout, LAYOUT } from '@/router/constant';
|
import { getParentLayout, LAYOUT } from '@/router/constant';
|
||||||
import { t } from '@/hooks/web/useI18n';
|
import { t } from '@/hooks/web/useI18n';
|
||||||
|
|
||||||
const permission: AppRouteModule = {
|
const level: AppRouteModule = {
|
||||||
path: '/level',
|
path: '/level',
|
||||||
name: 'Level',
|
name: 'Level',
|
||||||
component: LAYOUT,
|
component: LAYOUT,
|
||||||
|
|
@ -65,4 +65,4 @@ const permission: AppRouteModule = {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default permission;
|
export default level;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue