I have the following code:
{ data: function () { return { questions: [], sendButtonDisable: false, } }, methods: { postQuestions
Try this instead
... methods: { postQuestionsContent () { this.sendButtonDisable = true; } }
Registering your methods in the above manner should resolve the issue.