init: 初始系统模板

This commit is contained in:
TsMask
2023-09-05 14:38:23 +08:00
parent a5bc16ae4f
commit 1075c8ae4f
130 changed files with 22531 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
/**组件布局类型-基础布局组件标识 */
export const MENU_COMPONENT_LAYOUT_BASIC = 'BasicLayout';
/**组件布局类型-空白布局组件标识 */
export const MENU_COMPONENT_LAYOUT_BLANK = 'BlankLayout';
/**组件布局类型-内链接布局组件标识 */
export const MENU_COMPONENT_LAYOUT_LINK = 'LinkLayout';
/**菜单类型-目录 */
export const MENU_TYPE_DIR = 'D';
/**菜单类型-菜单 */
export const MENU_TYPE_MENU = 'M';
/**菜单类型-按钮 */
export const MENU_TYPE_BUTTON = 'B';
/**菜单内嵌地址标识-带/前缀 */
export const MENU_PATH_INLINE = '/inline';