# GoodsActionButton

# 基础渲染

加入购物车
<template>
  <d-goods-action-button text="加入购物车" @click="handleClick" />
</template>

<script>
  export default {
    methods: {
      handleClick() {
        alert('hello');
      },
    },
  };
</script>

# # API

# # 属性

名称 说明 类型 默认值
text
按钮文字 string -
color
按钮背景颜色 string linear-gradient(90deg, #FECE20 0%, #FF8A17 100%)

# # 插槽

# # 事件

# # 贡献者