25 lines
479 B
Vue
25 lines
479 B
Vue
<template>
|
|
<swiper class="ad" indicator-dots="true" indicator-color="#fff" indicator-active-color="#634838">
|
|
<swiper-item></swiper-item>
|
|
<swiper-item></swiper-item>
|
|
<swiper-item></swiper-item>
|
|
</swiper>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.ad{
|
|
width: 100%;
|
|
height: 294rpx;
|
|
border-radius: 20rpx;
|
|
background-color: #0f0;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name:"ad",
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script> |