Skip to content
Advertisement

How to bind option data from the API response in Vue.js?

I’m new to Vue.js and trying to bind option data from the API response.

I have written axios call from the mounted() and assigned companies form the response but I’m getting defined error as per below.

JavaScript

I have assigned the API response data to the company but why it’s not working so can someone guide.

Template Part:

JavaScript

Script Part:

JavaScript

Advertisement

Answer

You need to define companies in data function:

JavaScript

then in hook you need to use this:

JavaScript
Advertisement