I’m having an issue with a radio button that won’t check.
It seems to be working fine on other pages, but for some reason it just won't click here.
<div class="form-group">
<label class="control-label">Living Together Status</label>
<div class="radioCont">
<div class="form-check form-check-inline">
<label class="form-check-label"
><input
id="yes"
v-model="properties.is_living_together"
class="form-check-input btn-group-toggle"
type="radio"
name="livingTogether"
value="1"
tabindex="7"
/>Yes</label
>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label"
><input
id="no"
v-model="properties.is_living_together"
class="form-check-input btn-group-toggle"
type="radio"
name="livingTogether"
value="0"
tabindex="8"
/>No</label
>
</div>
</div>
</div>
</div>
Here are the properties:
properties = {
.....
employer: '',
residence_card_number: '',
// @ts-ignore
is_living_together: ''
}
Any assistance would be greatly appreciated.