Hey there, I'm new to Vue and struggling with iterating through data in my template. Despite being able to log everything properly, I can't seem to render it on the page.
Here's the API URL:
https://private-922d75-recruitmenttechnicaltest.apiary-mock.com/customexercises/
I've attempted the following:
<div v-for="post in posts" :key="post.id">
<h2>{{ post.exercises.id }}</h2>
<h2>{{ post.exercises.name }}</h2>
</div>