[Vuejs]-How to fix this "" ESLing error?

2👍

There’s a semi-colon appearing before a closing brace ;). Making the assumption that this is a Vue template, semi-colons do not belong within Vue’s template syntax.

_s(getItemValue(item, field) ? getItemValue(item, field) : '–';)
                                                              ^^ Here
👤Marty

Leave a comment