import { moneyFormat } from '@/helpers/utils' import { Cell, Image } from 'vant' import { defineComponent } from 'vue' import styles from './index.module.less' export default defineComponent({ name: 'GoodItem', props: { item: { type: Object, default: {} } }, setup({ item }) { return () => ( ( ), default: () => (
{item.productName}
{item.productAttr}
¥ {moneyFormat(item.productPrice)} x{item.productQuantity}
) }} >
) } })