30 lines
412 B
Vue
30 lines
412 B
Vue
<template>
|
|
<view class="laser-variant-thumb">
|
|
<image class="laser-variant-thumb-image" :src="src" mode="aspectFill" />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
src: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.laser-variant-thumb {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.laser-variant-thumb-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|