[Vuejs]-Vue js v-model is doesn't change the value in the text input or the value in the data

0👍

https://vuejs.org/guide/essentials/forms.html#text[enter link description here][1]

<p>Message is: {{ message }}</p>
<input v-model="message" placeholder="edit me" />

Leave a comment