How do I do Vue.set() in Vue 3?
You don’t need to. This article will help you to understand why we needed vue.set in the first place. In short, you need it so that you could add a new property to a data object without breaking the reactivity. With Vue 3, you no longer need to worry about breaking the reactivity. What the … Read more