my ul is looped out by v-for. There are three ul, on the page showing a ul, every time I click. Every time I display it, I will see the li text in the last ul flash. How can I solve this?
<ul v-for="(item,key) in newList">
<li>
<span class="span_three" :title="item.areaName">{{item.areaName}}</span>
<button @click="tianjian(item,key)" class="tianjian_lei"></button>
</li>
</ul>
The effect of the page is like this
every time I click to add a device, the last content flashes. How can I keep it from flashing?