关于vue.js:vue-使用computed报错-was-assigned-to-but-it-has-no-setter

35次阅读

共计 264 个字符,预计需要花费 1 分钟才能阅读完成。

问题:

 <a-radio @change="chooseOther" v-model="tempReadio"> 其余 </a-radio>
 
 computed: {tempReadio() {if (this.reasonValue == 7) {return true;} else {return false;}
    },

此时就会报错

解决办法:手动增加 set 就好了

  computed: {
    tempReadio: {get() {if (this.reasonValue == 7) {return true;} else {return false;}
      },
      set(val) {},},
  },

正文完
 0