element ui分页
时间: 2023-06-29 07:20:41 浏览: 100
element ui分页代码
Element UI 是一套基于 Vue.js 2.0 的桌面端组件库,其中包含了分页组件。使用 Element UI 的分页组件可以非常方便地实现分页功能。
使用 Element UI 的分页组件,需要在 Vue 组件中引入 Pagination 组件,并在页面中使用该组件。以下是一个简单示例:
```html
<template>
<div>
<el-pagination
:current-page="currentPage"
:page-size="pageSize"
:total="total"
@current-change="handleCurrentChange"
>
</el-pagination>
</div>
</template>
<script>
import { Pagination } from 'element-ui';
export default {
components: {
Pagination,
},
data() {
return {
currentPage: 1,
pageSize: 10,
total: 100,
};
},
methods: {
handleCurrentChange(page) {
console.log(`当前页码:${page}`);
},
},
};
</script>
```
在上面的示例中,我们引入了 Element UI 的 Pagination 组件,并使用该组件实现了分页功能。其中,currentPage 表示当前页码,pageSize 表示每页显示的数据条数,total 表示总数据量。在 current-change 事件中,我们可以监听到当前页码的改变,并进行相应的操作。
需要注意的是,使用 Element UI 的分页组件还需要引入相应的样式文件,我们可以在 main.js 中引入样式文件:
```js
import 'element-ui/lib/theme-chalk/index.css';
```
阅读全文