mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-01 18:17:46 +00:00
12 lines
273 B
TypeScript
12 lines
273 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 {}
|