[Vuejs]-Vue <script setup> reactivity not working

4👍

✅

In your function you have to change
buttonText = "Bar" to buttonText.value="Bar"

For more info on reactivity see: https://vuejs.org/api/reactivity-core.html#ref

Leave a comment