I have this
<Checkbox
label="View"
:initialState="data.something"
@updateStatus="updateCheckbox" >
</Checkbox>
data.something is a boolean. I want to change this boolean if the checkbox changes. The checkbox emits the new value (true/false). I know i can use a function to do that easily but i have a lot of checkboxes, so how do i know which data.something i have to update? Is the only option to write a function for all the checkboxes or is there a better way?