mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix(plugin-layout): 修复 Menu、CustomNaviGuard 类型 (#204)
This commit is contained in:
parent
6f89223a9d
commit
b0357e9fdb
15
packages/fes-plugin-layout/types.d.ts
vendored
15
packages/fes-plugin-layout/types.d.ts
vendored
@ -1,5 +1,6 @@
|
||||
import { Component, VNode, Ref } from 'vue';
|
||||
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuardReturn, NavigationGuard } from 'vue-router';
|
||||
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuard } from 'vue-router';
|
||||
import { MenuOption } from '@fesjs/fes-design/es/menu/interface';
|
||||
|
||||
interface CustomNavigationGuardOption {
|
||||
router: Router;
|
||||
@ -9,15 +10,15 @@ interface CustomNavigationGuardOption {
|
||||
}
|
||||
|
||||
interface CustomNavigationGuard {
|
||||
(option: CustomNavigationGuardOption): NavigationGuardReturn | Promise<NavigationGuardReturn>;
|
||||
(option: CustomNavigationGuardOption): ReturnType<NavigationGuard>;
|
||||
}
|
||||
|
||||
interface Menu {
|
||||
name: string;
|
||||
path: string;
|
||||
match: string[];
|
||||
title: string;
|
||||
icon: string | Component;
|
||||
name?: string;
|
||||
path?: string;
|
||||
match?: string[];
|
||||
title?: MenuOption['label'];
|
||||
icon?: string | Component;
|
||||
children?: Menu[];
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user