[Vuejs]-How to checkbox for every _children in vue-ads-table

0👍

I think you are looking for v-checkbox.

Probably would look like this in your table:

<template slot="toggle-children-icon" slot-scope="props">
  <v-checkbox v-model="props.expanded"/>
</template> 

(also try out v-simple-checkbox, it might look better in your table)

Leave a comment