I'm encountering an ES Lint Parsing Error in my Vue page due to a syntax issue. The problem seems to be arising from a parameter in my method that contains a dot symbol.
Error - Syntax Error: Unexpected token (1:1628)
<div class="text-sm font-medium" v-bind:class="{ highlight(coin.price_change_percentage_24h) }">
Is there a solution to this syntax error? Is there a way to escape it in the template file?
You can find the full code here.
Thank you in advance for any assistance!