16 lines
221 B
Markdown
16 lines
221 B
Markdown
<script setup>
|
|
import TableExample from './examples/TableExample.vue'
|
|
</script>
|
|
# Table
|
|
|
|
```vue
|
|
<script setup>
|
|
import { Table } from 'flowbite-vue'
|
|
</script>
|
|
<template>
|
|
<Table></Table>
|
|
</template>
|
|
```
|
|
|
|
<TableExample />
|