[Vuejs]-Vue js how to auto select checkbox based on database value with laravel

1👍

Here is the docs about how to work with checkboxes https://v2.vuejs.org/v2/guide/forms.html#Checkbox . You should modify your checkboxes to something like this:

<input type="checkbox" id="checkbox" v-model="checked">

Leave a comment