[Vuejs]-How can i 'v-repeat' through this object?

2👍

If I’m understanding what you want correctly you can use aliases

<h4>{{ post.letter }}</h4>
<ul>
    <li v-repeat="subPost : post.posts"> {{ subPost.title }}</li>
</ul>

Hope this helps!

👤Rwd

Leave a comment