gpt4 book ai didi

html - VueJS : V-for not displaying as desired

转载 作者:搜寻专家 更新时间:2023-10-30 22:32:51 30 4
gpt4 key购买 nike

如何让 v-for 以与以下 html 相同的形式显示表格数据:

<tr>
<th scope="col">Name</th>
<th scope="col">Price</th>
<th scope="col">Product ID</th>
<th></th>
</tr>

目前我正在使用以下 vue v-for 代码(如下),但它正在将表头(th)添加到另一个下面。我希望表头并排显示。

<tr v-for="(column, index) in schema" :key="index">
<th scope="col">{{column}}</th>
</tr>

最佳答案

你只需要将 v-for 放在你想要重复的元素上,而不是它的父元素。

For循环应该放在<th></th>>

<tr>
<th v-for="(column, index) in schema" :key="index">{{column}}</th>
</tr>

这是列表渲染的官方 vue 文档:https://v2.vuejs.org/v2/guide/list.html

关于html - VueJS : V-for not displaying as desired,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55074176/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com