1
0
Falko Schindler 1 жил өмнө
parent
commit
b6480425a9

+ 3 - 0
nicegui/elements/input.js

@@ -26,6 +26,9 @@ export default {
     };
   },
   watch: {
+    value(newValue) {
+      this.inputValue = newValue;
+    },
     inputValue(newValue) {
       this.$emit("update:value", newValue);
     },