Answer the question
In order to leave comments, you need to log in
How to preserve element order in Vue when applying v-if?
Hello!
There is such code and sometimes you need to hide some tabs:
<ul>
<li>1</li>
<li v-if="isVisible">2</li>
<li>3</li>
<ul>
<ul>
<li>1</li>
<li>3</li>
<li v-if="isVisible">2</li>
<ul>
Answer the question
In order to leave comments, you need to log in
I change to isVisible= false and back to true and the order changes
It turned out that the matter was in the uiv and Tabs component. Rewrote the component and everything worked as it should
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question