import { use } from '../../utils'; import { inherit } from '../../utils/functional'; const [sfc, bem] = use('sku-row'); function SkuRow(h, props, slots, ctx) { return (
{props.skuRow.k}:
{slots.default && slots.default()}
); } SkuRow.props = { skuRow: Object }; export default sfc(SkuRow);