File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,10 +75,10 @@ export default {
75
75
computed : {
76
76
inputWithValue ( ) {
77
77
const self = this ;
78
- const { value, defaultValue } = self . props ;
78
+ const { value } = self . props ;
79
79
const { currentInputValue } = self . state ;
80
80
return typeof value === 'undefined'
81
- ? ( defaultValue || defaultValue === 0 || currentInputValue )
81
+ ? ( currentInputValue )
82
82
: ( value || value === 0 ) ;
83
83
} ,
84
84
} ,
Original file line number Diff line number Diff line change @@ -330,10 +330,10 @@ export default {
330
330
computed : {
331
331
inputHasValue ( ) {
332
332
const self = this ;
333
- const { value, defaultValue } = self . props ;
333
+ const { value } = self . props ;
334
334
const { currentInputValue } = self . state ;
335
335
return typeof value === 'undefined'
336
- ? ( defaultValue || defaultValue === 0 || currentInputValue )
336
+ ? ( currentInputValue )
337
337
: ( value || value === 0 ) ;
338
338
} ,
339
339
} ,
You can’t perform that action at this time.
0 commit comments