Answer the question
In order to leave comments, you need to log in
Why does the updated VUE element retain state?
Explain how Vue re-renders elements.
Here's my problem - I have an element in my form template:
<div class="firstscreen__search-item">
<select name="city">
<option value="" selected disabled>Город</option>
<option
v-for="(city, index) in cities"
:value="city.ID"
>{{ city.NAME_RU }}</option>
</select>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question