0๐
โ
v-show
creates the element at page load even if the condition is false(it creates it as hidden). You could try using v-if
instead as it will only create the element once the condition becomes true.
Source:stackexchange.com