naive-ui/demo/documentation/components/pagination/zhCN/quick-jumper.demo.md
2020-09-25 15:40:23 +08:00

18 lines
184 B
Markdown

# 快速跳跃
```html
<n-pagination
v-model:page="page"
:page-count="100"
show-quick-jumper
/>
```
```js
export default {
data () {
return {
page: 2
}
}
}
```