dot.vue 407 B

123456789101112131415161718
  1. <template>
  2. <kk-badge is-dot class="item">query</kk-badge>
  3. <kk-badge is-dot class="item">
  4. <kk-button class="share-button" :icon="Share" type="primary" />
  5. </kk-badge>
  6. </template>
  7. <script lang="ts" setup>
  8. import { Share } from '@kankan-components/icons-vue'
  9. import { KkBadge, KkButton } from 'kankan-components'
  10. </script>
  11. <style scoped>
  12. .item {
  13. margin-top: 10px;
  14. margin-right: 40px;
  15. }
  16. </style>