我收到一个用kebab-case格式化的json,如下所示:
{name: "田中 太郎", profile-image: "", visit-frequency: "10"}
我想在模板中显示多个对象,因此我使用v-for
。但我无法弄清楚如何显示profile-image
或visit-frequency
,因为我显然可以不这样做:
<li class="cell" v-for="item in members">
<img :src="item.attributes.profile-image" :alt="item.attributes.name">
</li>
我正在考虑对象列表中的循环并重命名这些属性,但我觉得还有更好的东西。