fix(select): add exposed methods to types

pull/7127/head
J-Michalek 2025-01-21 15:44:13 +01:00
parent 4bb3c3d3a6
commit 41ffafde26
1 changed files with 2 additions and 2 deletions

View File

@ -818,11 +818,11 @@ export interface SelectMethods {
* @group Component * @group Component
* *
*/ */
declare const Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>; declare const Select: DefineComponent<SelectProps, SelectSlots, SelectEmits, SelectMethods>;
declare module 'vue' { declare module 'vue' {
export interface GlobalComponents { export interface GlobalComponents {
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>; Select: DefineComponent<SelectProps, SelectSlots, SelectEmits, SelectMethods>;
} }
} }