Skip to content

Commit 7599417

Browse files
authored
fix: flicker when quickly changing between vue-vuetify inputs
1 parent effb45c commit 7599417

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/vue-vuetify/src/util/composition.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,9 @@ export const useVuetifyControl = <
185185
const handleBlur = () => {
186186
touched.value = true;
187187
isFocused.value = false;
188+
if (changeEmitter && (changeEmitter as any).flush) {
189+
(changeEmitter as any).flush();
190+
}
188191
};
189192

190193
const jsonforms = useJsonForms();

0 commit comments

Comments
 (0)