I have a form with input values. When I have a select with a v-model on it and go to change the drop down value, the input from the previous fields clear. I made a simple code
I had the same problem, and for me the problem was that I saved the value of the text input in a prop, but it should be saved in the data method.
So the element looks like:
End then in the script part:
data() { return { value: '' } }