Here is what I have:
<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>
It throws a warning Error when evaluating expression "wrestler.team".
The initial wrestler.team is shown and so is the word "okay", but the second wrestler.team throws that warning. Is this expected behavior?