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

7 months ago
  1. <template>
  2. <s-goods-item
  3. :title="goodsData.spuName"
  4. :img="goodsData.picUrl"
  5. :price="goodsData.price"
  6. :skuText="goodsData.introduction"
  7. priceColor="#FF3000"
  8. :titleWidth="400"
  9. />
  10. </template>
  11. <script setup>
  12. const props = defineProps({
  13. goodsData: {
  14. type: Object,
  15. default: {},
  16. },
  17. });
  18. </script>