Files
flowbite-vue/docs/components/pagination/examples/PaginationNavigationExample.vue
2022-12-23 16:54:30 +04:00

12 lines
342 B
Vue

<template>
<div class="vp-raw flex items-center justify-center text-center">
<Pagination v-model="currentPage" :total-pages="100" :layout="'navigation'"></Pagination>
</div>
</template>
<script lang="ts" setup>
import { Pagination } from '../../../../src/index'
import { ref } from 'vue'
const currentPage = ref<number>(1)
</script>