mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
48a056b051
* docs: modify layout style * docs: modify nav padding * docs: update style * feat: update * docs: upadte * docs: update * docs: modify layout style * docs: update style * feat: update * docs: upadte * docs: update * docs: update * docs: update * docs: remove empty script * docs: update --------- Co-authored-by: kooriookami <bingshuanglingluo@163.com> Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
15 lines
471 B
Vue
15 lines
471 B
Vue
<template>
|
|
<div>
|
|
<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>
|