27 lines
271 B
Markdown
27 lines
271 B
Markdown
|
|
||
|
<cn>
|
||
|
#### 基本
|
||
|
基础分页。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Basic
|
||
|
Basic pagination.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-pagination v-model="current" :total="50" />
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
current: 2,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
```
|
||
|
|