I have an input:
Try this
Click me to enable
vue js
new Vue({ el: '#app', data: { terms: false }, computed: { isDisabled: function(){ return !this.terms; } } })