[Vuejs]-Composition-api and nuxt3 – i don’t have reactivity

1👍

You need to change the line

isVisible = !isVisible;

to

isVisible.value = !isVisible.value

more info here: https://vuejs.org/guide/essentials/reactivity-fundamentals.html#ref

Leave a comment