Skip to content

Commit cf3952e

Browse files
authored
fix(numeric): numeric modelValue type should not include underfined (#3800)
* fix(numeric): numeric modelValue type should not include underfined * fix(numeric): [numeric] numeric modelValue type should not include underfined * fix(numeric): numeric modelValue type should not include underfined
1 parent 0d8b483 commit cf3952e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue/src/numeric/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const numericProps = {
8282
type: Boolean,
8383
default: true
8484
},
85-
modelValue: [Number, String, undefined],
85+
modelValue: [Number, String],
8686
mouseWheel: Boolean,
8787
name: String,
8888
placeholder: String,

0 commit comments

Comments
 (0)