* Adds page change event (#189) Adds first and last pagination items Co-authored-by: gassio <gassiogi@gmail.com> * feat: Pagination component refactoring --------- Co-authored-by: gassio <gassioglou@gmail.com> Co-authored-by: gassio <gassiogi@gmail.com>
24 lines
936 B
Vue
24 lines
936 B
Vue
<template>
|
||
<div class="vp-raw flex flex-col items-center">
|
||
<Pagination v-model="currentPage" :total-items="100" :show-labels="false">
|
||
<template #prev-icon>⬅️</template>
|
||
<template #next-icon>➡️</template>
|
||
<template v-slot:page-button="{ page, setPage }">
|
||
<button
|
||
@click="setPage(page)"
|
||
class="flex items-center justify-center first:rounded-l-lg last:rounded-r-lg px-3 h-8 ml-0 leading-tight text-gray-500 bg-purple-200 border border-purple-300 hover:bg-purple-300 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white"
|
||
>
|
||
{{ page }}
|
||
</button>
|
||
</template>
|
||
</Pagination>
|
||
Current page: {{ currentPage }}
|
||
</div>
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import { Pagination } from '../../../../src/index'
|
||
import { ref } from 'vue'
|
||
|
||
const currentPage = ref<number>(1)
|
||
</script>
|