我如何 'v-repeat' 通过这个对象?

How can i 'v-repeat' through this object?

当我使用 'v-repeat' 时,我可以看到 'post.letter',但是看起来我还需要在同一个 'v-repeat' 中遍历帖子数组?

当我尝试 'post.posts.title' 时我什么也得不到,当我尝试 'post.posts' 时我得到 [object, object].

        var myObj = [
        {
            post: {
                letter: 'A',
                posts: [
                    { title: 'lorem ipsum'},
                    { title: 'dolor sit amet'}
                ],
            }
        }
    ];

如果我理解你想要的是正确的,你可以使用别名

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

希望对您有所帮助!