basic.vue 387 B

123456789101112
  1. <template>
  2. <div m4>
  3. <UIButton :width="80" mr2>button1 </UIButton>
  4. <UIButton type="primary" :width="80" mr2>button1 </UIButton>
  5. <UIButton type="cancel" :width="100" mr2>button2</UIButton>
  6. <UIButton type="submit" :width="100" mr2>button3</UIButton>
  7. </div>
  8. </template>
  9. <script lang="ts" setup>
  10. import { UIButton } from 'kankan-components'
  11. </script>