Skip to content

Commit 09b4699

Browse files
authored
fix(Select): support more primitive types in value field (#4105)
1 parent 46c2987 commit 09b4699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/components/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface SelectItemBase {
2121
* @defaultValue 'item'
2222
*/
2323
type?: 'label' | 'separator' | 'item'
24-
value?: string | number
24+
value?: AcceptableValue | boolean
2525
disabled?: boolean
2626
onSelect?(e?: Event): void
2727
[key: string]: any

0 commit comments

Comments
 (0)