项目初始化
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
import type { AppRouteRecordRaw } from '@jeesite/core/router/types';
|
||||
import { t } from '@jeesite/core/hooks/web/useI18n';
|
||||
import { SCREEN_LAYOUT } from '@jeesite/core/layouts/screen/index.vue';
|
||||
|
||||
export const BigScreenRoute: AppRouteRecordRaw = {
|
||||
path: '/bigScreen',
|
||||
name: 'BigScreen',
|
||||
component: SCREEN_LAYOUT,
|
||||
redirect: '/bigScreen/Analysis',
|
||||
meta: {
|
||||
title: t('routes.dashboard.bigScreen'),
|
||||
ignoreAuth: false, // 需要登录权限
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'screenAnalysis',
|
||||
name: 'ScreenAnalysis',
|
||||
component: () => import('@jeesite/core/layouts/views/screen/analysis/index.vue'),
|
||||
meta: {
|
||||
title: t('routes.dashboard.bigScreen'),
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user