【发布时间】:2019-11-07 03:32:49
【问题描述】:
我目前正在使用以下库:https://www.npmjs.com/package/vue-owl-carousel。
事实证明,当在轮播内部的 img 中使用 v-for 时,轮播无法正常工作。
这样不行:
<carousel
:autoplay="true"
:loop="true"
:center="true"
:nav="false"
:margin="5"
>
<img
v-for="item in detIncidente.fotos"
:key="item.fecha"
:src="item.path"
width="446"
height="446"
@click="showSingle(item.path)"
/>
</carousel>
如果它对我正常工作,这样:
<carousel
:autoplay="true"
:loop="true"
:center="true"
:nav="false"
:margin="5"
>
<img width="446" height="669" src="https://placeimg.com/200/200/any?3" />
<img width="446" height="669" src="https://placeimg.com/200/200/any?4" />
<img width="446" height="669" src="https://placeimg.com/200/200/any?2" />
<img width="446" height="669" src="https://placeimg.com/200/200/any?3" />
</carousel>
【问题讨论】:
标签: vue.js owl-carousel