forked from opentiny/tiny-vue
19 lines
352 B
Vue
19 lines
352 B
Vue
<template>
|
|
<tiny-pager
|
|
popper-class="custom-pager"
|
|
layout="sizes,prev, pager, next"
|
|
:page-size="5"
|
|
:page-sizes="[5, 10, 20, 30, 40, 50, 100]"
|
|
:total="50"
|
|
></tiny-pager>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Pager as TinyPager } from '@opentiny/vue'
|
|
</script>
|
|
<style>
|
|
.custom-pager.tiny-popper {
|
|
background: #e6f7ff;
|
|
}
|
|
</style>
|