<div class="col-md-8">
<va-input label="Address 1"
v-model="Address1"
id="address"
class="inp">
</va-input>
</div>
below i am calling api to get data. after getting i need to set value to above input field.
document.getElementById("address").value =res.data[0].address1,
but the above code is not working.
Address1and not by directly manipulating dom. Ex:this.Address1 = res.data[0].address1datafield?