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