报错 :Vuex - Computed property “name” was assigned to but it has no setter
如何解决:
computed: {
addModal: {
get: function () {
return this.$store.state.addModal
},
set: function (newValue) {
this.$store.state.addModal = newValue
}
}
},
设置一个set