I'am using vue-bootstrap , in the following code class come when step===1 but in else condition (!step===1) i want to render another class. First one is working fine , the else condition is not working. Steps is associated with Wizards. Can anybody help me out ?
<div :class="{'d-flex flex-column justify-content-center align-items-center': step === 1, ' d-flex justify-content-center align-items-center': !step === 1 }"></div>