3👍
✅
Replace v-show
with v-if
and it will work as it will render only when it should.
v-show
changes only visibility, when v-if
putting it into DOM only when true.
Source:stackexchange.com