网站首页
编程语言
数据库
系统相关
其他分享
编程问答
rowClassName
2024-09-27
Ant-design-vue Table 自定义列斑马纹效果
在AntDesignVue的`Table`组件中,要实现自定义列的斑马纹效果,可以通过设置`rowClassName`属性来实现。以下是一个示例:```html<template> <a-table:data-source="data":rowClassName="rowClassName"> <a-table-columnv-for="columnincolumns":k
2024-05-22
antd 的 ProTable 通过rowClassName 设置行的字体颜色时,固定列fixed不生效的问题
1、其他列是已经生效了,但是固定列是没有生效的 constrowClassName=(record)=>{returntableTreeSearchKey.includes(record.key)?'selected-row':'';};<ProTable ...... rowClassName={rowClassName}> 2、分析原因:固定列的子组件也有color属性,覆盖