mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
f78407a409
* fix(components): empty icon component judgment * revert: globals components * fix(components): el-icon missing import * fix: use shallowRef for icon components * refactor: remove shallowRef * fix: remove unused code * fix: social-link icon size * fix: time picker icon * fix: v-if judge
18 lines
587 B
Vue
18 lines
587 B
Vue
<template>
|
|
<el-button-group>
|
|
<el-button type="primary" :icon="ArrowLeft">Previous Page</el-button>
|
|
<el-button type="primary">
|
|
Next Page<el-icon class="el-icon--right"><ArrowRight /></el-icon>
|
|
</el-button>
|
|
</el-button-group>
|
|
|
|
<el-button-group>
|
|
<el-button type="primary" :icon="Edit"></el-button>
|
|
<el-button type="primary" :icon="Share"></el-button>
|
|
<el-button type="primary" :icon="Delete"></el-button>
|
|
</el-button-group>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ArrowLeft, Edit, Share, Delete, ArrowRight } from '@element-plus/icons'
|
|
</script>
|