<template v-for="(item, index) in items">
  <input type="checkbox" v-model="item.checked" />
</template>computed: {
    items: {
        get () {
          return  this.$store.state['options'].items;
        },
        set (value) { 
          this.$store.commit('options/SET_ITEMS_PROPERTY', value);
        }
      }
}