Skip to content

Instantly share code, notes, and snippets.

View DonizeteVida's full-sized avatar

Donizete J. R. Vida DonizeteVida

View GitHub Profile
@DonizeteVida
DonizeteVida / TailPagination.vue
Last active November 12, 2022 09:24
A not so good Vue3 Tailwind Pagination component
<script setup lang="ts">
defineProps({
modelValue: {
required: true,
type: Number
},
maxPage: {
required: true,
type: Number
},