This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
### Debugging objects
By default objects are not rendered. If you need to display they content for
debugging purpose, you can add `print-objects` attribute to the `<VFlexTable />`.
<!--code-->
```vue
<script setup lang="ts">
// this is our data
const data = [
{
id: 0,
company: 'Grubspot',
type: 'New Lead',
industry: 'Software',
status: 'Active',
contacts: [
{
id: 0,
picture: 'https://media.cssninja.io/content/avatars/25.jpg',
initials: 'AC',
color: 'info',
},
// and more contacts ..
],
},
// and more data ...
]
</script>
<template>
<VFlexTable
:data="data"
rounded
print-objects
/>
</template>
```
<!--/code-->