0
i have this input:
<div class="d-flex justify-content-between align-items-center">
<label for="patymentTerms">Payment Terms</label>
<b-form-checkbox id="patymentTerms" :checked="true" switch v-model="rForm.payment_terms" />
</div>
and this is the data:
data() {
return {
rForm: {
payment_terms: "",
},
};
},
i am able to store data and other inputs in database but i'm a bit confused of how can i return false or true to of this input
0 comments:
Post a Comment
Thanks