Files
meida_applet/pages/chat/components/goods.vue
T
2025-10-10 17:23:24 +08:00

20 lines
342 B
Vue

<template>
<s-goods-item
:title="goodsData.spuName"
:img="goodsData.picUrl"
:price="goodsData.price"
:skuText="goodsData.introduction"
priceColor="#9251EB"
:titleWidth="400"
/>
</template>
<script setup>
const props = defineProps({
goodsData: {
type: Object,
default: {},
},
});
</script>