chore: format code

This commit is contained in:
vben
2024-06-08 19:49:06 +08:00
parent d584d4cf4e
commit 7bcd7746ca
187 changed files with 775 additions and 587 deletions

View File

@@ -72,6 +72,10 @@ interface RouteMeta {
* 路由是否已经加载过
*/
loaded?: boolean;
/**
* 菜单可以看到但是访问会被重定向到403
*/
menuVisibleWithForbidden?: boolean;
/**
* 用于路由->菜单排序
*/
@@ -80,6 +84,7 @@ interface RouteMeta {
* 外链-跳转路径
*/
target?: string;
/**
* 标题名称
*/

View File

@@ -1,7 +1,7 @@
import 'vue-router';
import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
import 'vue-router';
declare module 'vue-router' {
interface RouteMeta extends IRouteMeta {}
}