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
Source:stackexchange.com