I want to build a list of data source received from JavaScript in vue.js
JavaScript
x
2
1
<div class="{{item.clockIn}}"></div>
2
Where this {{item.clockIn}}
return two type of value that is true
and false
.
JavaScript
1
9
1
.true {
2
content: 'IN';
3
color: blue;
4
}
5
.true {
6
content: 'OUT';
7
color: red;
8
}
9
But it’s not working as i thought. Anyone can help me with this.
Advertisement
Answer
First of all, you seem to have a typo in your class definition. The second .true
class should be .false
. Then you can use something like this:
JavaScript
1
2
1
<div :class="item.clockIn ? 'true' : 'false'"></div>
2
This makes the class
property reactive and getting the value related to the item.clockIn
directly.