basic.vue 248 B

1234567891011
  1. <template>
  2. <div class="mb-4">
  3. <UIIcon type="del" />
  4. <UIIcon type="del" :size="16" />
  5. <UIIcon type="del" :size="20" />
  6. </div>
  7. </template>
  8. <script lang="ts" setup>
  9. import { UIIcon } from 'kankan-components'
  10. </script>