我正在使用 VueJS2 和 Laravel。使用vue-agile滑动一些图片和文字。
当我尝试添加v-for以滑动所有帖子时,我收到错误 *"TypeError: Cannot read property ' style ' of undefined"*
这是代码:
<agile :arrows="false" :speed="750" :timing="'linear'" :fade="true" :autoplay="true" :autoplaySpeed="5000" :pauseOnHover="true" :dots="false">
<div :class="['testimonial slide slide--' + post.id]" v-for="post in posts">
<img :src="`/images/${post.image}`" v-if="post.image">
<p>{{post.text}}</p>
<strong>{{post.author}}</strong><br>
</div>
</agile>
我的错误在哪里?谢谢你。