[Vuejs]-Conditionally using a css class in Vue

1👍

You can just do

<div :class="[ displayConfig.mindCard ? 'workflowSelectionMin' : 'workflowSelection', 'md-layout', 'md-gutter', 'md-alignment-center-center' ]">

Take a look at the array syntax

Leave a comment