We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a2b8f commit 0c149fcCopy full SHA for 0c149fc
src/vue-timepicker.vue
@@ -194,7 +194,7 @@ export default {
194
},
195
196
readValues () {
197
- this.stateValue = (!this.value || this.muteWatch)
+ this.stateValue = !(!this.value)
198
if (!this.value || this.muteWatch) { return }
199
200
const timeValue = JSON.parse(JSON.stringify(this.value || {}))
@@ -353,7 +353,6 @@ export default {
353
toggleDropdown () {
354
this.showDropdown = !this.showDropdown
355
this.stateAction = true
356
- console.log('this.stateAction', this.stateAction)
357
358
359
select (type, value) {
0 commit comments