22 lines
306 B
Vue
22 lines
306 B
Vue
<template>
|
|
<div class="content">
|
|
<tiny-pager mode="complete" :total="100"></tiny-pager>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Pager } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyPager: Pager
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.content {
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|