Hello there, I'm encountering an issue with my app. I am attempting to unlock a field if the checkbox next to it is selected and then save this value to an array. However, when I click on the checkbox, the field does not unlock. Below is the code snippet:
<ul>
<li v-for="oneFragrance in fragrance" v-bind:key="oneFragrance.id">
<input type="checkbox" :value="oneFragrance.nameOfFragrance" :id="oneFragrance.id" v-model="checkedComponents"> {{oneFragrance.nameOfFragrance}}
<input type="text" :disabled="checkedComponents" v-model="valuesOfComponents">
</li>
</ul>