[Vuejs]-Vuejs auto refresh list after request

0👍

In your submit handler get the response from the server and assign it to your list of contacts

methods: {
  async submitForm() {
  {
    this.getcontacts = await ContactApi().submit(this.contact);
    this.arraycontacts = this.getcontacts.contactsList; 
  }

Leave a comment