import { use } from '../../utils'; import Button from '../../button'; const [sfc, bem] = use('sku-actions'); export default sfc({ props: { buyText: String, skuEventBus: Object, showAddCartBtn: Boolean }, render(h) { const emit = name => () => { this.skuEventBus.$emit(name); }; return (