vue data dictionary code example
Example 1: vue for loop
<ul id="v-for-object" class="demo">
<li v-for="value in object">
{{ value }}
</li>
</ul>
Example 2: how to map over arrays vuejs
this.allCampaigns = response.data.data.campaigns.map(campaigns => ( campaigns.name))
map over array to access item (eg. just the campaign name)