本文主要是介绍vue3 vxe-grid 当前高亮行的背景颜色+字体颜色,要求随着主题的颜色的改变而改变。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、先上个图:
2、点击的行的颜色与字体的颜色,并没有随时主题的颜色而改变:
const gridOptions = reactive<BasicTableProps>({id: 'userTable',showHeaderOverflow: false,showOverflow: true,keepSource: true,columns: userColumns,pagerConfig: {currentPage: 1,pageSize: 100,pageSizes: [20, 50, 100, 200, 500, 1000],},toolbarConfig: {slots: { buttons: 'toolbar_buttons' },refresh: false,import: false,print: false,zoom: false,export: false,custom: false,},...rowStyle({ row, rowIndex }) {if (row.id == currRow.value?.id) {return {color: 'white',backgroundColor: `${unref(getThemeColor)}`,};}},});
这个getThemeColor是一个computed属性,返回主题的颜色。
rowStyle({ row, rowIndex }) {if (row.id == currRow.value?.id) {return {color: 'white',backgroundColor: `${unref(getThemeColor)}`,};}},
3、通过上面的设置,我们就可以轻松的发现颜色变了,其中color:选中行字体的颜色,backgroundColor:是选中行的背景颜色。
这篇关于vue3 vxe-grid 当前高亮行的背景颜色+字体颜色,要求随着主题的颜色的改变而改变。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!