我有以下代码:
{
data: function () {
return {
questions: [],
sendButtonDisable: false,
}
},
methods: {
postQuestionsContent: function () {
var that = this;
that.sendButtonDisable = true;
},
},
},
我需要sendButtonDisable
在postQuestionsContent()
调用时更改为true 。我发现只有一种方法可以做到这一点。与var that = this;
。
有更好的解决方案吗?
试试这个
以上述方式注册您的方法应该可以解决问题。