I want to center my td element when the text is equals to “-“. If the text is equals to something else, I want it align at the left.
How can I do that?
<td x-bind:style="$el.textContent == '-' ? { 'text-align': 'left' } : { 'text-align': 'center' }" x-text="format(variable)"></td>
Yes, I could simple replace the $el.textContent
by format(variable)
, but I would like to not call format(variable)
twice.