Hello everyone,
I have a question about Vue resource and html checkboxes. I am trying to send multiple checkbox values with Vue resource get request and for each checkbox, Vue send separate request. How can I manage it to send just one request?
<input type="checkbox" name="color[]" v-on:change="filterColors | debounce 1500" v-model="checkedColors" value="{!! $color->slug !!}" />
Emil Moe
Senior Data Engineer
You should be able to use either
v-model="checkedColors[]"orv-ref:checkedColors