22 lines
		
	
	
		
			344 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			344 B
		
	
	
	
		
			Vue
		
	
	
| <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>
 | |
| 
 |