[Vuejs]-Nuxt,js vue,js how to fetch data inside of table

0👍

You should use created event, in this event, call your businesslist API and in the response, you should assign received data to your businessuser vue js variable.
Let see here one example.

created () {
      this.initialize();
    },

 methods: {
   initialize () { 
    this.businessuser = businesslistApiCalling();    
   }
 }

businesslistApiCalling(); is just an example you should call here the API method to receive Json data from the Server.

Leave a comment