Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-20 10:59:21 +08:00
v3-admin-vite/types/directives.d.ts

11 lines
278 B
TypeScript

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