可以让datagrid没有选中效果吗?包括鼠标放上去行变色,鼠标点上去出现边框这种效果。我把selectionMode="NONE"设置后,行选中依然有这些效果。
这个可能只能用样式控制了。设置鼠标 hover 的背景为透明。
能告知一下具体样式的位置么?
.v-grid-row:hover .v-grid-cell {
background-color: transparent !important;
}
可以让datagrid没有选中效果吗?包括鼠标放上去行变色,鼠标点上去出现边框这种效果。我把selectionMode="NONE"设置后,行选中依然有这些效果。
这个可能只能用样式控制了。设置鼠标 hover 的背景为透明。
能告知一下具体样式的位置么?
.v-grid-row:hover .v-grid-cell {
background-color: transparent !important;
}