Files
flowbite-vue/docs/components/pagination/examples/PaginationExample.vue
2022-12-23 17:25:45 +04:00

12 lines
274 B
Vue

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