jdcProject_front/types/global-directives.d.ts
2024-11-21 19:52:07 +08:00

12 lines
320 B
TypeScript

import type { Directive } from "vue"
export {}
// 由 app.directive 全局注册的自定义指令需要在这里声明 TS 类型才能获得类型提示
declare module "vue" {
export interface ComponentCustomProperties {
vLoading: Directive<Element, boolean>
vPermission: Directive<Element, string[]>
}
}