mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import type { Directive } from 'vue';
|
|
import { RoleEnum } from '@/enums/roleEnum';
|
|
|
|
declare module 'vue' {
|
|
export interface ComponentCustomProperties {
|
|
vLoading: Directive<Element, boolean>;
|
|
vAuth: Directive<Element, string | string[] | RoleEnum[]>;
|
|
}
|
|
}
|
|
|
|
export {};
|