doc: updated doc

This commit is contained in:
victor
2022-12-23 17:25:45 +04:00
parent 64d629133c
commit 6580c65be3
6 changed files with 71 additions and 12 deletions

View File

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