Why does the vue setting v-model checked fail?

clipboard.png
when I set v-model, checked is not selected. I don"t know what"s going on.

has found the reason. Thank you.

Mar.20,2021

due to the limitation of JavaScript, Vue cannot detect arrays of the following changes:

when you directly set an item using the index, for example: vm.items [indexOfItem] = newValue
when you modify the length of the array, for example: vm.items.length = newLength
ide/list.html" rel=" nofollow noreferrer "> https://cn.vuejs.org/v2/guide.


Hello, how did you finally solve the problem

?
Menu