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)
- [Vuejs]-Reason for working properly only when using closure in this method in vue.js watch object
- [Vuejs]-Dynamically change API route for SPA
Source:stackexchange.com