[Vuejs]-Reactive list using v-for on component

1👍

You’re using isSelected in PersonSingle but only assign to it on created hook which is never called again after component creation. Either do the assignments in a watcher for data inside PersonSingle, or eliminate isSelected altogether and use data.isSelected directly as isSelected is kinda redundant in this example.

Leave a comment