[Vuejs]-Fill form fields from relationship model in vform vue laravel

0๐Ÿ‘

I think you need to pass first the data before you open the modal.

editModal(data) {
  isEditting = true
  this.form.family_no = data.family_no
  this.form.house_no = data.house_no
  this.form.address = data.address
  $('#addNewHouseholdModal').modal('show');
}

and then you form must be like this

<modal>
  <input type="text" v-model="form.family_no" />
  <input type="text" v-model="form.house_no" />
  <input type="text" v-model="form.address" />
<modal>

Leave a comment