naive-ui/demo/documentation/components/pagination/zhCN/quick-jumper.demo.md

18 lines
184 B
Markdown
Raw Normal View History

2020-02-04 11:55:39 +08:00
# 快速跳跃
```html
<n-pagination
2020-09-25 15:40:23 +08:00
v-model:page="page"
2020-02-04 11:55:39 +08:00
:page-count="100"
show-quick-jumper
/>
```
```js
export default {
data () {
return {
page: 2
}
}
}
```