icon.vue 529 B

123456789101112131415
  1. <template>
  2. <div class="flex">
  3. <kk-button type="primary" :icon="Edit" />
  4. <kk-button type="primary" :icon="Share" />
  5. <kk-button type="primary" :icon="Delete" />
  6. <kk-button type="primary" :icon="Search">Search</kk-button>
  7. <kk-button type="primary">
  8. Upload<el-icon class="el-icon--right"><Upload /></el-icon>
  9. </kk-button>
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import { KkButton } from 'kankan-components'
  14. import { Delete, Edit, Search, Share, Upload } from '@element-plus/icons-vue'
  15. </script>