build(projects): update deps and fix type error [升级依赖并修复类型问题]

This commit is contained in:
Soybean
2023-05-04 19:02:20 +08:00
parent 5a4f842774
commit 34f023c4b1
7 changed files with 239 additions and 187 deletions

View File

@ -245,13 +245,14 @@ declare namespace App {
};
/** 面包屑 */
type GlobalBreadcrumb = import('naive-ui').DropdownOption & {
type GlobalBreadcrumb = Omit<import('naive-ui').DropdownOption, 'icon'> & {
key: string;
label: string;
disabled: boolean;
routeName: string;
hasChildren: boolean;
children?: GlobalBreadcrumb[];
icon?: import('vue').Component;
options?: import('naive-ui/es/dropdown/src/interface').DropdownMixedOption[];
};
/** 多页签Tab的路由 */