We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effb45c commit 7599417Copy full SHA for 7599417
1 file changed
packages/vue-vuetify/src/util/composition.ts
@@ -185,6 +185,9 @@ export const useVuetifyControl = <
185
const handleBlur = () => {
186
touched.value = true;
187
isFocused.value = false;
188
+ if (changeEmitter && (changeEmitter as any).flush) {
189
+ (changeEmitter as any).flush();
190
+ }
191
};
192
193
const jsonforms = useJsonForms();
0 commit comments