mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
36 lines
617 B
Vue
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>
|