0👍
✅
Try to wait for response :
async mounted() {
await this.allDataCompetitorData()
}
then in template use getter:
<ul>
<li v-for="data in competitor" :key="data">
{{ data.name }}
</li>
</ul>
Source:stackexchange.com