Currently, I have a dynamic form-checkbox input.
<b-form-group label="Skills">
<b-form-checkbox-group v-model="form.selected" :options="options"/>
</b-form-group>
However, I need to expand on this, so that for each option, there is a number input next to it, and they tie together.
I tried to do this with a v-for but it didn't really work, and I couldn't link them, so that for each selected (say there were two), the v-model destination would look something like this.
form {
{ selected: checkboxName,
number: 5
},
{ selected: checkboxNameTwo,
number: 2
},
}
If anyone has any pointers, that would be great.
Kind Regards, Fox