mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
import { use } from '../../utils';
|
||
|
||
const [sfc, bem] = use('sku-row');
|
||
|
||
export default sfc({
|
||
props: {
|
||
skuRow: Object
|
||
},
|
||
|
||
render(h) {
|
||
return (
|
||
<div class={bem()}>
|
||
<div class={bem('title')}>{this.skuRow.k}:</div>
|
||
{this.slots()}
|
||
</div>
|
||
);
|
||
}
|
||
});
|