- 创建代码忽略文件列表 (.gitignore) - 设置代码格式化规则 (.prettierrc)- 添加各种样式文件,包括背景、边框、按钮、卡片等组件样式 - 创建暗黑主题样式文件 - 添加表单和代码样式文件
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>
|
|
|