[Vuejs]-How can I add condition in class on the vue component?

2👍

if alert should always be present you could write:

<div :class="['alert', item.created_at ? 'alert-success':'alert-warning']">...</div>

Don’t concatenate in the bindings, use the list notation!

Leave a comment