Can someone assist me with a VUEJS project? I am looking to display a component based on the presence of a specific class.
STRATEGY
If (class a) is found, show (component a) If (class b) is found, show (component b) If neither (class a) nor (class b) is present, do not display anything
<section class="card" v-if="">
<h3>{{title}}</h3>
<p>{{subtitle}}</p>
</section>