[Vuejs]-Vue.js 2 does not update child when in hidden state

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.

Leave a comment