Answers for "what does v-model do in vue"

9

vue v-model

<input v-model="message" placeholder="edit me">
<p>Message is: {{ message }}</p>
Posted by: Guest on March-04-2020
1

what does v-model do in vue

Although a bit magical, v-model is essentially syntax sugar for updating 
data on user input events, plus special care for some edge cases.
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language