0๐
v-model
is a two way data binding, which means that the data will change according to the data in the input html tag, and also if you change the data itself โ the value you see in the input itself will change as well.
so if you do not use v-model on an input html tag, the data will not change according to it. And best way to access the value of the input is by using v-model
- [Vuejs]-Deploy and customize a VueJs app using Docker and GitlabCI
- [Vuejs]-How to fix the error "Unknown custom element: <bot-ui>"?
Source:stackexchange.com