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 7e5e07b commit 658efadCopy full SHA for 658efad
src/components/form-inputs/calendar/calendar/index.ts
@@ -8,7 +8,7 @@ import { _CalendarBase } from './_base';
8
@Component()
9
export abstract class Calendar extends _CalendarBase {
10
11
- abstract calendarOptions() : {
+ abstract calendarOptions(): {
12
icon: string,
13
type: string
14
}
@@ -63,6 +63,9 @@ export abstract class Calendar extends _CalendarBase {
63
type: attr.type,
64
onChange: (date, text) => {
65
this.$emit('input', date);
66
+ },
67
+ popupOptions: {
68
+ observeChanges: false
69
70
71
0 commit comments