0👍
Use v-show
or v-if
with item.isVisible
.
v-show will render the element but keep it hidden and v-if will not render it until isVisible is true.
Source:stackexchange.com
0👍
Use v-show
or v-if
with item.isVisible
.
v-show will render the element but keep it hidden and v-if will not render it until isVisible is true.