mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
19 lines
337 B
Vue
19 lines
337 B
Vue
<template>
|
|
<div>
|
|
<el-link :icon="Edit">Edit</el-link>
|
|
<el-link>
|
|
Check<el-icon class="el-icon--right"><icon-view /></el-icon>
|
|
</el-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Edit, View as IconView } from '@element-plus/icons-vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-link {
|
|
margin-right: 8px;
|
|
}
|
|
</style>
|