mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-27 15:50:17 +08:00
feat(projects): 迁移多页签
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
export interface ExposeLayoutMixMenu {
|
||||
resetFirstDegreeMenus(): void;
|
||||
import BScroll from '@better-scroll/core';
|
||||
|
||||
export interface ExposeBetterScroll {
|
||||
instance: BScroll;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { VNodeChild } from 'vue';
|
||||
import type { RouteLocationNormalizedLoaded } from 'vue-router';
|
||||
import type { DropdownOption } from 'naive-ui';
|
||||
|
||||
/** 菜单项配置 */
|
||||
@@ -20,3 +21,6 @@ export type GlobalBreadcrumb = DropdownOption & {
|
||||
hasChildren: boolean;
|
||||
children?: GlobalBreadcrumb[];
|
||||
};
|
||||
|
||||
/** 多页签Tab的路由 */
|
||||
export type GlobalTabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta'>;
|
||||
|
||||
Reference in New Issue
Block a user