fix(plugin-layout): 修复 Menu、CustomNaviGuard 类型 (#204)

This commit is contained in:
izumiiAoba 2023-07-26 16:22:36 +08:00 committed by GitHub
parent 6f89223a9d
commit b0357e9fdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import { Component, VNode, Ref } from 'vue'; 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 { interface CustomNavigationGuardOption {
router: Router; router: Router;
@ -9,15 +10,15 @@ interface CustomNavigationGuardOption {
} }
interface CustomNavigationGuard { interface CustomNavigationGuard {
(option: CustomNavigationGuardOption): NavigationGuardReturn | Promise<NavigationGuardReturn>; (option: CustomNavigationGuardOption): ReturnType<NavigationGuard>;
} }
interface Menu { interface Menu {
name: string; name?: string;
path: string; path?: string;
match: string[]; match?: string[];
title: string; title?: MenuOption['label'];
icon: string | Component; icon?: string | Component;
children?: Menu[]; children?: Menu[];
} }