mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-17 12:48:02 +00:00
14 lines
237 B
Vue
14 lines
237 B
Vue
|
|
<script setup>
|
||
|
|
import { CirclePlus } from '@element-plus/icons-vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<el-icon color="#79bbff" :size="30"><CirclePlus /></el-icon>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.el-icon {
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
</style>
|