vant/packages/sku/components/SkuActions.vue
2018-04-25 11:50:10 +08:00

36 lines
617 B
Vue

<template>
<div :class="b()">
<van-button
v-if="showAddCartBtn"
bottom-action
:text="$t('cart')"
@click="skuEventBus.$emit('sku:addCart')"
/>
<van-button
type="primary"
bottom-action
:text="buyText || $t('buy')"
@click="skuEventBus.$emit('sku:buy')"
/>
</div>
</template>
<script>
import VanButton from '../../button';
import create from '../../utils/create';
export default create({
name: 'sku-actions',
components: {
VanButton
},
props: {
buyText: String,
skuEventBus: Object,
showAddCartBtn: Boolean
}
});
</script>