[Vuejs]-Get selected checkbox from child component

0πŸ‘

βœ…

It does not work because you are binding subcategories with <HelloWorld v-model="temp" :categories="c.children" /> instead of <HelloWorld :cats.sync="temp" :categories="c.children" />

Leave a comment