mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-20 10:59:21 +08:00
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import type { Directive } from "vue"
|
|
|
|
export {}
|
|
|
|
// 由 app.directive 全局注册的自定义指令需要在这里声明 TS 类型才能获得类型提示
|
|
declare module "vue" {
|
|
export interface ComponentCustomProperties {
|
|
vPermission: Directive<Element, string[]>
|
|
}
|
|
}
|