mall-uniapp/pages/chat/components/goods.vue

22 lines
344 B
Vue
Raw Normal View History

2022-11-22 07:45:36 +00:00
<template>
2024-07-09 09:34:18 +00:00
<s-goods-item
:title="goodsData.spuName"
:img="goodsData.picUrl"
:price="goodsData.price"
:skuText="goodsData.introduction"
priceColor="#FF3000"
:titleWidth="400"
/>
2022-11-22 07:45:36 +00:00
</template>
<script setup>
const props = defineProps({
goodsData: {
type: Object,
default: {},
},
});
</script>