import { use } from '../../utils'; const [sfc, bem] = use('sku-row'); export default sfc({ props: { skuRow: Object }, render(h) { return (
{this.skuRow.k}:
{this.$slots.default}
); } });