* 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>
12 lines
339 B
Vue
12 lines
339 B
Vue
<template>
|
|
<div class="vp-raw flex flex-col items-center">
|
|
<Pagination v-model="currentPage" :total-pages="100" previous-label="<<<" next-label=">>>"></Pagination>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { Pagination } from '../../../../src/index'
|
|
import { ref } from 'vue'
|
|
|
|
const currentPage = ref<number>(1)
|
|
</script>
|