group.vue 641 B

12345678910111213141516171819202122232425
  1. <template>
  2. <kk-button-group mb4>
  3. <kk-button type="primary" :icon="ArrowLeft">Previous Page</kk-button>
  4. <kk-button type="primary">
  5. Next Page<el-icon class="el-icon--right"><ArrowRight /></el-icon>
  6. </kk-button>
  7. </kk-button-group>
  8. <kk-button-group ml4>
  9. <kk-button type="primary" :icon="Edit" />
  10. <kk-button type="primary" :icon="Share" />
  11. <kk-button type="primary" :icon="Delete" />
  12. </kk-button-group>
  13. </template>
  14. <script setup lang="ts">
  15. import { KkButton, KkButtonGroup } from 'kankan-components'
  16. import {
  17. ArrowLeft,
  18. ArrowRight,
  19. Delete,
  20. Edit,
  21. Share,
  22. } from '@element-plus/icons-vue'
  23. </script>