import Vue from "vue";
import { Pagination } from "vant";
Vue.use(Pagination);
<van-pagination
v-model="currentPage"
:total-items="24"
:items-per-page="5"
/>
export default {
data() {
return {
currentPage: 1
}
}
}
<van-pagination
v-model="currentPage"
:page-count="12"
mode="simple"
/>
<van-pagination
v-model="currentPage"
:total-items="125"
:show-page-size="3"
force-ellipses
/>
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
v-model | 当前页码 | number | - |
mode | 显示模式,可选值为 simple | string | multi |
prev-text | 上一页按钮文字 | string | 上一页 |
next-text | 下一页按钮文字 | string | 下一页 |
page-count | 总页数 | number | string | 根据页数计算 |
total-items | 总记录数 | number | string | 0 |
items-per-page | 每页记录数 | number | string | 10 |
show-page-size | 显示的页码个数 | number | string | 5 |
force-ellipses | 是否显示省略号 | boolean | false |
事件名 | 说明 | 回调参数 |
---|---|---|
change | 页码改变时触发 | - |
加载数据时显示动效。区域加载在表格等容器中加载数据时显示。constructor(props) {super(props);this.table = {columns: [{labe...
Backtop 回到顶部返回页面顶部的操作按钮基础用法滑动页面即可看到右下方的按钮。templateScroll down to see the bottom-right ...
在Bootstrap4中包含了很多实用的小工具,这些功能能够让你不用写CSS代码就能实现想要的效果,让开发更快捷和简单。边框使用borde...
Bootstrap4中,我们可以使用各种类对图片的形状、对齐等进行设置。具体使用的类如下:图片形状向一个img元素添加类,轻松地在项...
axios.get('/user/12345').catch(function (error) {if (error.response) {// 请求已发出,且服务器的响应状态码超出了 ...