# GoodsActionIcon

# 基础渲染

位置
<template>
  <d-goods-action-icon icon="location" text="位置" @click="handleClick" />
</template>

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

# # API

# # 属性

名称 说明 类型 默认值
icon
图标 string -
text
按钮文字 string -
color
图标颜色 string #323233
dot
是否显示图标右上角小红点 boolean false
badge
图标右上角徽标的内容 number | string

# # 插槽

# # 事件

# # 贡献者