-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Open
Labels
Description
Vue version
3.5.18
Link to minimal reproduction
Steps to reproduce
element-plus
中vClickOutside
指令的Arg
可以为HTMLElement
但是Directive
的Arg
默认为string
Directive Type
What is expected?
export type Directive<
HostElement = any,
Value = any,
Modifiers extends string = string,
Arg = any,
> =
| ObjectDirective<HostElement, Value, Modifiers, Arg>
| FunctionDirective<HostElement, Value, Modifiers, Arg>
What is actually happening?
export type Directive<
HostElement = any,
Value = any,
Modifiers extends string = string,
Arg extends string = string,
> =
| ObjectDirective<HostElement, Value, Modifiers, Arg>
| FunctionDirective<HostElement, Value, Modifiers, Arg>
System Info
Any additional comments?
element-plus/element-plus/#21729
element-plus
使用的vue
版本3.2.7