Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jun 9, 2023
1 parent 6b06575 commit 78b1b96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/components/content/examples/TableExampleEmptySlot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const people = []
<template>
<UTable :rows="people" :columns="columns">
<template #empty-state>
<div class="flex flex-col items-center justify-center py-5">
<span>No people</span>
<UButton color="primary" label="Add People" size="sm" class="rounded-full mt-2"/>
<div class="flex flex-col items-center justify-center py-6 gap-3">
<span class="italic text-sm">No one here!</span>
<UButton label="Add people" />
</div>
</template>
</UTable>
Expand Down
8 changes: 4 additions & 4 deletions docs/content/4.data/1.table.md
Original file line number Diff line number Diff line change
Expand Up @@ -505,12 +505,12 @@ const people = [...]
<template>
<UTable :rows="people" :columns="columns">
<template #empty-state>
<div class="flex flex-col items-center justify-center py-5">
<span>No people</span>
<UButton color="primary" label="Add People" size="sm" class="rounded-full mt-2"/>
<div class="flex flex-col items-center justify-center py-6 gap-3">
<span class="italic text-sm">No one here!</span>
<UButton label="Add people" />
</div>
</template>
</UTable>
</UTable>
</template>
```
::
Expand Down

0 comments on commit 78b1b96

Please sign in to comment.