Child Rows
<template v-slot:child_row="props">
<div><b>First name:</b> {{props.row.first_name}}</div>
<div><b>Last name:</b> {{props.row.last_name}}</div>
</template>options:{
...
childRow: function(h, row) {
return <div>My custom content for row {row.id}</div>
}
...
} options:{
...
childRow: 'row-component'
...
}Disabling Specific Child Rows
Last updated