ant-design-vue/components/pagination/demo/basic.md

25 lines
271 B
Markdown
Raw Normal View History

2018-03-10 14:39:12 +00:00
<cn>
#### 基本
基础分页。
</cn>
<us>
#### Basic
Basic pagination.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-10 14:39:12 +00:00
<template>
<a-pagination v-model="current" :total="50" />
</template>
<script>
export default {
data() {
return {
current: 2,
2019-09-28 12:45:07 +00:00
};
},
};
2018-03-10 14:39:12 +00:00
</script>
```