Skip to content

Commit 791e898

Browse files
committed
Fixed TVTable props (missing currentPage prop)
1 parent de5da0f commit 791e898

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitthecat/tailwind-vue-data-table",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"keywords": [
55
"tailwindcss",
66
"vue",

src/components/TVTable.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ const props = defineProps({
9191
type: Array,
9292
default: () => []
9393
},
94+
currentPage: {
95+
type: Number,
96+
default: 1
97+
},
9498
totalRows: {
9599
type: Number,
96100
default: 0

0 commit comments

Comments
 (0)