在线直播系统源码,vant 轮播图组件
<template>
<van-swipe :autoplay="3000" indicator-color="#1baeae">
<van-swipe-item v-for="(item, index) in list" :key="index">
<img :src="item.carouselUrl" alt="" @click="goTo(item.redirectUrl)">
</van-swipe-item>
</van-swipe>
</template>
<script>
export default {
props: {
list: Array
},
methods: {
goTo(url) {
window.open(url)
}
}
}
</script>
<style scoped>
.my-swipe {
img {
width: 100%;
height: 100%;
}
}
</style>
以上就是 在线直播系统源码,vant 轮播图组件,更多内容欢迎关注之后的文章
标签:在线,vant,直播,组件,源码,轮播 From: https://www.cnblogs.com/yunbaomengnan/p/17596333.html