Template:
<template #[`${instanceItemIdKey}`]="{ item }">
<v-checkbox
:input-value="item.value"
@change="$emit('onPermissionChange', item)"
></v-checkbox>
</template>
The data which gives me item
is passed through props. The item is dynamic (so I can't use the computed setter). When change is fired it runs vuex action and the mutates the state (I've checked item.value inside vuex-dev-tools and the values are right). BUT the checked state is not changed. How can I change the checked state based on item.value without using v-model?