1.2.0 • Published 1 year ago
vue-pagination-z v1.2.0
vue-pagination-z
pagination ui component for vue(>=vue2.0)
Installation
npm install vue-pagination-z
import Pagination from 'vue-pagination-z'
Vue.use(Pagination);
Usage
<sny-pagination :current="5" :total="88" name="p" :goFun=goFun></sny-pagination>
Props
Property | Type | Required | Default Value | Description |
---|---|---|---|---|
current | Number | true | 1 | 当前页 |
total | Number | true | 0 | 总页码 |
name | String | false | page | url参数名称 |
prevText | String | false | 上一页按钮文案 | |
nextText | String | false | 下一页按钮文案 | |
isJump | Boolen | false | true | 是否显示跳页模块 |
background | String | false | #000000 | 背景颜色 |
goFun | String | false | null | click events |