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 6ba509b commit 770981fCopy full SHA for 770981f
src/components/DatePicker.vue
@@ -11,6 +11,7 @@
11
:attributes='attributes_'
12
:date-validator='dateValidator'
13
@drag='dragValue = $event'
14
+ @input='updateValue'
15
v-bind='$attrs'
16
v-on='filteredListeners()'
17
v-if='isInline'>
@@ -270,6 +271,9 @@ export default {
270
271
suggestedInputText(val) {
272
this.valueText = val;
273
},
274
+ value() {
275
+ if (!this.popoverKeepVisibleOnInput) this.popoverForceHidden = true;
276
+ },
277
278
created() {
279
this.assignPageRange();
@@ -312,7 +316,6 @@ export default {
312
316
} else {
313
317
this.$emit('input', value);
314
318
}
315
- if (!this.popoverKeepVisibleOnInput) this.popoverForceHidden = true;
319
320
parseValue(valueText) {
321
let value = null;
0 commit comments