gpt4 book ai didi

vue.js - 我可以在不使用 ul 或 ol 的情况下使用 Vue v-for

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

我是 Vue 的新手。我想显示一些数据行,但我既不想要数字 (ol) 也不想要要点 (ul)。除了我的以下方法,还有其他方法吗?

<li v-for="product in contract.products">
<div class="p-1 row">
<div class="col-4">
<strong>{{ product.productName }}</strong>
</div>
<div class="col-4">
Allocation: {{ product.allocation }}
</div>
<div class="col-4">
Fulfilled: {{ product.allocationFulfilled }}
</div>
</div>
</li>

非常感谢。

最佳答案

虽然v-for的例子一般用<li> , 你实际上可以使用 v-for any 元素上要重复的指令。因此,您可以将标记更改为:

<div class="p-1 row" v-for="product in contract.products">
<div class="col-4">
<strong>{{ product.productName }} </strong>
</div>
<div class="col-4">
Allocation: {{ product.allocation }}
</div>
<div class="col-4">
Fulfilled: {{ product.allocationFulfilled }}
</div>
</div>

关于vue.js - 我可以在不使用 ul 或 ol 的情况下使用 Vue v-for,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58222161/

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