Fix usage of v-for and v-if on same component
This commit is contained in:
parent
8263b17861
commit
06d6dbe3a3
@ -106,8 +106,8 @@
|
|||||||
@start="onDragStart"
|
@start="onDragStart"
|
||||||
@end="onDragEnd"
|
@end="onDragEnd"
|
||||||
>
|
>
|
||||||
|
<template v-for="(channel, index) in network.channels">
|
||||||
<Channel
|
<Channel
|
||||||
v-for="(channel, index) in network.channels"
|
|
||||||
v-if="index > 0"
|
v-if="index > 0"
|
||||||
:key="channel.id"
|
:key="channel.id"
|
||||||
:channel="channel"
|
:channel="channel"
|
||||||
@ -117,6 +117,7 @@
|
|||||||
channel === $store.state.activeChannel.channel
|
channel === $store.state.activeChannel.channel
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
</Draggable>
|
</Draggable>
|
||||||
</div>
|
</div>
|
||||||
</Draggable>
|
</Draggable>
|
||||||
|
Loading…
Reference in New Issue
Block a user