[Vuejs]-How to update the meta information from dynamic data using vue-meta in Vue js?

0👍

Hi Rather then using asyncData you can use serverPrefetch

try this

 serverPrefetch():Promise<any> {
  // this function should return Promise
   return this.$axios.get(
      'https://my_api...'
    ).then(result => {
          this.articlelist = result.data.data
      });

  }

Leave a comment