I have 2 radio buttons. I need to bind their value to a variable by using v-model in vue.js. When v-model is added, both radio buttons showing as unchecked.
<div class="radio-item">
<input type="radio" id="ritema" name="ritem" value="business" checked v-model="picked">
<label for="ritema">Business </label>
</div>
<div class="radio-item">
<input type="radio" id="ritemb" name="ritem" value="public" v-model="picked">
<label for="ritemb">Public</label>
</div>
pickeddata value to either "public" or "business"?