123456789101112131415161718192021222324252627 |
- <template>
- <view @tap="sheep.$router.go(data?.url)">
- <su-image :src="sheep.$url.cdn(data.imgUrl)" mode="widthFix" />
- </view>
- </template>
- <script setup>
-
- import sheep from '@/sheep';
-
- const props = defineProps({
- data: {
- type: Object,
- default: () => ({}),
- },
- styles: {
- type: Object,
- default: () => ({}),
- },
- });
- </script>
- <style lang="scss" scoped></style>
|