I know that computed properties are intended to be "read-only" (computed setters being the exception). But I'm at a loss for ideas and need your help. I have a v-for that generated buttons and select fields with the data from the computed property - [{id: 1, system_name: 1, roles "role", disabled: false}] . Now, I want to set disabled: false to true but it doesn't work because I can only read the computed property. This begs the question, is there a way for me to change disabled: false to disabled: true?