这是我所拥有的:

<div v-for="slot in card" class="panel panel-default">
<div class="panel-heading">{{ slot.name }}</div>
<div class="panel-body">
    <p v-for="wrestler in slot.wrestlers">
        {{ wrestler.team }}
        <p v-if="true">okay</p>
        {{ wrestler.team }}
    </p>
</div>




它会发出警告Error when evaluating expression "wrestler.team".显示最初的wrestler.team,单词“ okay”也是如此,但是第二个wrestler.team会显示该警告。这是预期的行为吗?

最佳答案

不要嵌套<p>标签。在此link上可以找到有关澄清嵌套<p>标签的好文章。

关于javascript - 使用v-if和v-for评估表达式时出现Vuejs错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35399084/

10-10 02:56