[Vuejs]-VueJS – v-if and v-show don't work properly
0👍 You should run this piece of code in the mounted() callback of your component. To me, it looks like you’re running it when the script has finished loading, which is not necessarily when the DOM is fully built and definitely not when Vue has finished rendering its components. Working with v-if while using an … Read more