tiny-vue/examples/docs/resources/mobile-first/app/pager/pager-mode-simple.vue

22 lines
293 B
Vue

<template>
<div class="content">
<tiny-pager mode="simple" :total="100"></tiny-pager>
</div>
</template>
<script>
import { Pager } from '@opentiny/vue'
export default {
components: {
TinyPager: Pager
}
}
</script>
<style scoped>
.content {
margin-bottom: 20px;
}
</style>