26 lines
426 B
Vue
26 lines
426 B
Vue
<template>
|
|
<view>
|
|
<!-- #ifdef H5 -->
|
|
<swiper :indicator-dots="false" :autoplay="false" :duration="500">
|
|
<swiper-item v-for="(item,index) in list" :key="index">
|
|
<view class="swiper-item"></view>
|
|
</swiper-item>
|
|
</swiper>
|
|
<!-- #endif -->
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
list: {
|
|
type: Array,
|
|
default: () => {
|
|
[]
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style> |