basic.vue 226 B

12345678910
  1. <template>
  2. <div class="mb-4">
  3. <UIButton>button1 </UIButton>
  4. <UIButton :width="100">button2</UIButton>
  5. </div>
  6. </template>
  7. <script lang="ts" setup>
  8. import { UIButton } from 'kankan-components'
  9. </script>