vue 引用vant中的swipe出不来
实际的效果:
想要的效果:
代码如下:
<template> <van-swipe class="my-swipe" :autoplay="3000" lazy-render indicator-color="#1baeae">
<van-swipe-item v-for="(image,index) in images" :key="index">
<img :src="image" />
</van-swipe-item>
</van-swipe>
</template>
<script>
export default {
setup() {
const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg',
'https://img.yzcdn.cn/vant/apple-2.jpg',
];
return { images };
}
}
</script>
<style lang="less" scoped>
.my-swipe{
img{
width: 100%;
height: 100%;
}
}
</style>
哪个大佬能帮忙解决!
回答:
引入了嘛
import Vue from 'vue';
import { Swipe, SwipeItem } from 'vant';
Vue.use(Swipe);
Vue.use(SwipeItem);
以上是 vue 引用vant中的swipe出不来 的全部内容, 来源链接: utcz.com/p/935810.html