700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > Computed property was assigned to but it has no setter

Computed property was assigned to but it has no setter

时间:2023-09-21 15:37:25

相关推荐

Computed property was assigned to but it has no setter

更改前

computed: {isShowAnswerCom() {return this.isShowErrorQuestion === 0 ? this.isShowAnswer : 1}},

更改后

computed: {isShowAnswerCom: {get () {return this.isShowErrorQuestion === 0 ? this.isShowAnswer : 1},set (v) {this.isShowAnswer = v}}},

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。