반응형
1.v-bind:클래스,아이디 형식으로 조건식
<tr v-for="(row, index) in filteredData" v-bind:class="{'tr_color': (row.test_flag == '1')}">
<td>asdasd</td>
</tr>
2.CSS tr_color에 대한 디자인 지정
<style>
.tr_color {
background-color: #F15F5F;
font-weight: bold;
}
</style>
반응형
'IT > javascript JQUERY' 카테고리의 다른 글
Vue.js 쓰기 권한 주기 (0) | 2024.11.18 |
---|---|
Vue.js Table의 Th유동적으로 변경 (0) | 2024.11.16 |
AUIGrid 그리드 최하단에 건수 보이게 하기 (0) | 2024.11.14 |
Vue.js 비동기 처리 await (0) | 2023.08.23 |
Vue.js 조건에 따른 CLASS 적용 (0) | 2023.08.22 |