0π
The problem is that you are trying to bind input value multiple variables. Both to reverseMessage
(using v-model) and to value
(using interpolation).
Please remove value="{{message}}"
and just set reverseMessage
variable β this should update the input view.
<input type="text" name="column_name" v-model="reverseMessage"/>
and then
this.reverseMessage = "my new input value"
You cannot bind input to many variables in the template itself. Use watchers or computed properties if you really need this.
Source:stackexchange.com