Files
wwjcloud-nest-v1/admin-vben/apps/web-antd/src/constants/layout.ts

8 lines
347 B
TypeScript
Raw Normal View History

2025-08-29 00:10:44 +08:00
export const LAYOUT_OPTIONS = [
{ key: 'sidebar-nav', i18nKey: 'layout.vertical' },
{ key: 'sidebar-mixed-nav', i18nKey: 'layout.verticalMix' },
{ key: 'header-nav', i18nKey: 'layout.horizontal' },
{ key: 'header-sidebar-nav', i18nKey: 'layout.headerSidebar' },
] as const;
export type LayoutKey = (typeof LAYOUT_OPTIONS)[number]['key'];