发布v1.0.3

This commit is contained in:
kele
2022-11-22 15:45:36 +08:00
commit 01f091fcd8
525 changed files with 80922 additions and 0 deletions
@@ -0,0 +1,39 @@
<template>
<su-swiper
:list="imgList"
:dotStyle="dotMap[data.indicator]"
imageMode="widthFix"
dotCur="bg-mask-40"
:seizeHeight="300"
/>
</template>
<script setup>
import { computed } from 'vue';
import sheep from '@/sheep';
const dotMap = {
1: 'long',
2: 'tag',
};
const props = defineProps({
data: {
type: Object,
default: () => ({}),
},
styles: {
type: Object,
default: () => ({}),
},
});
const imgList = computed(() =>
props.data.list.map((item) => ({
...item,
src: sheep.$url.cdn(item.src),
poster: sheep.$url.cdn(item.poster),
})),
);
</script>
<style></style>