[Vuejs]-Select is not populating via API call in VueJS

0๐Ÿ‘

    <select name="website_id">
       <option v-for="item in websiteData" :value="item.id"> 
       {{item.domain}}
       </option>
    </select>

Typo in websiteData. In template you can access variables without this.

Leave a comment