0👍
✅
You should try binding class.
Something like that:
<div :class="getDivClasses(value.USD.PRICE)">
and inside methods:
getDivClasses(value) {
return value > 0 ? "positive" : "negative";
},
Source:stackexchange.com