You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The controlled open state of the Select. Can be bind as `v-model:open`. */
8
8
open?:boolean
9
9
/** The open state of the select when it is initially rendered. Use when you do not need to control its open state. */
10
10
defaultOpen?:boolean
11
11
/** The value of the select when initially rendered. Use when you do not need to control the state of the Select */
12
-
defaultValue?:string
12
+
defaultValue?:T
13
13
/** The controlled value of the Select. Can be bind as `v-model`. */
14
-
modelValue?:string
14
+
modelValue?:T
15
+
/** Use this to compare objects by a particular field, or pass your own comparison function for complete control over how objects are compared. */
16
+
by?:string| ((a:T, b:T) =>boolean)
15
17
/** The reading direction of the combobox when applicable. <br> If omitted, inherits globally from `DirectionProvider` or assumes LTR (left-to-right) reading mode. */
16
18
dir?:Direction
17
19
/** The name of the Select. Submitted with its owning form as part of a name/value pair. */
0 commit comments