Files
front/src/router/constants.ts

19 lines
382 B
TypeScript
Raw Normal View History

2026-03-05 23:45:39 +08:00
export const WHITE_LIST = [
{ name: 'notFound', children: [] },
{ name: 'login', children: [] },
]
export const NOT_FOUND = {
name: 'notFound',
}
export const REDIRECT_ROUTE_NAME = 'Redirect'
export const DEFAULT_ROUTE_NAME = 'Workplace'
export const DEFAULT_ROUTE = {
title: 'menu.dashboard.workplace',
name: DEFAULT_ROUTE_NAME,
fullPath: '/dashboard/workplace',
}