1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1× | // // // // // // // // // // import { mapActions } from 'vuex' export default { props: ['item', 'id'], methods: mapActions(['updateList']), watch: { 'item.checked': function () { this.updateList(this.id) } } } |