gpt4 book ai didi

vue.js - 如何在 Vue JS 表格标签中正确使用 v-if 和 v-else

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

由于我的搜索不足以解决我的问题,我将其张贴在这里以澄清如何正确使用 v-ifv-else<td> Vue 中 HTML 表格中的标签。

//given the value of this.property is name
<tr>
<td v-if="this.property == 'name'">I'm name</td>
<td v-else>No I'm not</td>
</tr>

我的问题是,即使我的 this.property值为 'name'或者不是 'name'它总是落到 v-else条件,和 v-if没有被执行。我想要的输出是执行 v-if如果this.property值为 'name'v-else如果没有。

我的做法是否正确?我需要您的指导。

最佳答案

删除这个指针。你不需要它。

//given the value of this.property is name
<tr>
<td v-if="property === 'name'">I'm name</td>
<td v-else>No I'm not</td>
</tr>

关于vue.js - 如何在 Vue JS <td> 表格标签中正确使用 v-if 和 v-else,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51555362/

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