[Vuejs]-How to conditionally render an element, based on what radio button is checked with Vue.js

3👍

Just use your v-model as the statement to check.
Ex.

<div v-if="form.claimType === 'Option 1'">
    <span>Show me </span>
</div>

Leave a comment