mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
15 lines
484 B
Vue
15 lines
484 B
Vue
<template>
|
|
<div class="flex">
|
|
<el-button type="primary" :icon="Edit" />
|
|
<el-button type="primary" :icon="Share" />
|
|
<el-button type="primary" :icon="Delete" />
|
|
<el-button type="primary" :icon="Search">Search</el-button>
|
|
<el-button type="primary">
|
|
Upload<el-icon class="el-icon--right"><Upload /></el-icon>
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { Delete, Edit, Search, Share, Upload } from '@element-plus/icons-vue'
|
|
</script>
|