I am trying to set the disabled property on a text field via checkbox. I'm referencing this item, but none of the solutions are working for me.
My text field and checkbox are as follows:
      <input
        type="checkbox"                  
        class="form-check-input"
        v-model="formData.useSystemSetting"            
      >
     <input
      type="text"
      class="form-control"
      :class="hasError('maxCount') ? 'is-invalid' : ''"
      placeholder="Enter the Maximum Count"
      v-model="formData.maxCount"
      :disabled = "isDisabled"
    >
My computed property is:
computed:{
 isDisabled: function() {      
  this.useSystemSetting = this.useSystemSetting == true?false:true
  return this.useSystemSetting;
},
I'm also setting useSystemSettings in the data section to true because if I don't it doesn't get populated. When I add a breakpoint to the computed property, it's only getting hit on the page load, but not after.
 
     
    