goods.vue 344 B

123456789101112131415161718192021
  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>