Skip to content

Commit

Permalink
added sub component for table style v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
BitTheCat committed Dec 13, 2022
1 parent 97aeafb commit 889de4a
Show file tree
Hide file tree
Showing 15 changed files with 2,097 additions and 806 deletions.
2 changes: 1 addition & 1 deletion dev/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="py-8 px-8">
<div class="font-semibold mb-2">
Tailwind Vue DataTable v0.2.2
Tailwind Vue DataTable v0.2.3
<span class="text-xs font-light">by BitTheCat</span>
</div>
<div>
Expand Down
10 changes: 5 additions & 5 deletions dev/TableShow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
>
<template #header-row>
<tr>
<td colspan="2" />
<td colspan="1">Header1</td>
<td colspan="2" class="bg-red-500" />
<td colspan="2">Header1</td>
</tr>
</template>


<template #footer-row>
<tr>
<td colspan="1" />
<td colspan="1" />
<td colspan="1">Footer</td>
<td colspan="1" class="bg-red-500" />
<td colspan="1" class="bg-green-500"/>
<td colspan="2">Footer</td>
</tr>
</template>
</TVTable>
Expand Down
4 changes: 3 additions & 1 deletion dev/css/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import "tailwindcss/utilities";

@import "../../src/css/app.css"
Loading

0 comments on commit 889de4a

Please sign in to comment.