Vue computed property values was assigned to but it has no setter

案发现场

Vue computed property values was assigned to but it has no setter_第1张图片

vue 文件中的核心代码写法




使用了 vuex 中的值来显示内容, 然后报错 [Vue warn]: Computed property "filterKey" was assigned to but it has no setter.

解决方案

由于数据从 store 中来, 不能直接对数据修改, 因此, 使用 data 的值绑定 v-model 然后, data 数据在初始化时使用 store 的值就可以了.

调整后的vue文件



你可能感兴趣的:(Vue computed property values was assigned to but it has no setter)