We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如题,在 vue 中添加 Swiper时,没有显示分页器,一直找 bug,没有发现啥 bug,直到我将
<div class="swiper-slide" v-for="list in lists" :key="list.id"> <a :href="list.linkUrl"> <img :src="list.picUrl"> </a> </div>
改为
<div class="swiper-slide">1</div> <div class="swiper-slide">2</div> <div class="swiper-slide">3</div>
能用后,我发现应该是数据的问题,仔细一看,原来在父组件忘加 v-if 判断条件😂,因为数据还没来的时候显示 swipe 组件就有问题 找这个 bug 花了我快一个小时。。。。。🤨
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
如题,在 vue 中添加 Swiper时,没有显示分页器,一直找 bug,没有发现啥 bug,直到我将
改为
能用后,我发现应该是数据的问题,仔细一看,原来在父组件忘加 v-if 判断条件😂,因为数据还没来的时候显示 swipe 组件就有问题
找这个 bug 花了我快一个小时。。。。。🤨
The text was updated successfully, but these errors were encountered: