Vuetify - How to highlight row on click in v-data-table

前端 未结 3 970
悲哀的现实
悲哀的现实 2020-12-16 23:04

How to highlight the selected row in v-data-table? i tried to modified the data by adding flag variable selected in the Example

In the above example cli

3条回答
  •  粉色の甜心
    2020-12-16 23:48

    
      tr.v-data-table__selected {
        background: #7d92f5 !important;
      }
    
    

    or

    
    

    Example https://codepen.io/nicolai-nikolai/pen/GRgLpNY

提交回复
热议问题