Code
<div class="flex justify-center">
<vs-chip v-if="current" class="text-base w-24" :color="color">
{{
getPercentage > 0 && getPercentage < 3
? "Neutral"
: getPercentage > 3 && current < average
? "Buy"
: "Sell"
}}
</vs-chip>
</div>
How can I fix this parsing error in vue ?
Is there a way to solve this without disabling the eslint rule ?