You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
344 B
21 lines
344 B
<template>
|
|
<s-goods-item
|
|
:title="goodsData.spuName"
|
|
:img="goodsData.picUrl"
|
|
:price="goodsData.price"
|
|
:skuText="goodsData.introduction"
|
|
priceColor="#FF3000"
|
|
:titleWidth="400"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
goodsData: {
|
|
type: Object,
|
|
default: {},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
|