customize.vue 363 B

1234567891011121314151617
  1. <template>
  2. <kk-badge value="new" class="item">
  3. <kk-button>comments</kk-button>
  4. </kk-badge>
  5. <kk-badge value="hot" class="item">
  6. <kk-button>replies</kk-button>
  7. </kk-badge>
  8. </template>
  9. <script lang="ts" setup>
  10. import { KkBadge, KkButton } from 'kankan-components'
  11. </script>
  12. <style scoped>
  13. .item {
  14. margin-top: 10px;
  15. margin-right: 40px;
  16. }
  17. </style>