修改elementui中分页组件el-pagination的样式
要修改Element UI中el-pagination
组件的样式,可以通过CSS覆盖默认样式。以下是一个简单的例子,展示如何修改分页组件的背景颜色和字体颜色。
首先,在你的Vue项目中的组件的<style>
标签或者单独的CSS文件中添加自定义样式:
/* 覆盖分页组件的背景颜色 */
.pagination-background .el-pager li {
background-color: #f2f2f2; /* 你想要的背景颜色 */
}
/* 覆盖分页组件的字体颜色 */
.pagination-background .el-pager li a {
color: #666; /* 你想要的字体颜色 */
}
然后,在使用el-pagination
组件的Vue组件上,添加class
属性来应用这些样式:
<template>
<el-pagination
class="pagination-background"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-sizes="[100, 200, 300, 400]"
:page-size="100"
layout="total, sizes, prev, pager, next, jumper"
:total="400">
</el-pagination>
</template>
<script>
export default {
data() {
return {
currentPage: 1
};
},
methods: {
handleSizeChange(val) {
console.log(`每页 ${val} 条`);
},
handleCurrentChange(val) {
console.log(`当前页: ${val}`);
},
}
};
</script>
在这个例子中,.pagination-background
类被应用到el-pagination
组件上,从而使得分页的背景颜色和字体颜色被修改。你可以根据需要自定义这些样式。
评论已关闭