UnisKB/ui/src/workflow/icons/application-node-icon.vue

22 lines
450 B
Vue
Raw Normal View History

2025-06-03 08:08:49 +00:00
<template>
2025-06-05 09:28:07 +00:00
<el-avatar
2025-06-03 08:08:49 +00:00
v-if="isAppIcon(item?.icon)"
shape="square"
:size="32"
style="background: none"
class="mr-8"
>
<img :src="item?.icon" alt="" />
2025-06-05 09:28:07 +00:00
</el-avatar>
2025-06-11 11:15:17 +00:00
<LogoIcon v-else height="28px" style="width: 28px; height: 28px; display: block" />
2025-06-03 08:08:49 +00:00
</template>
<script setup lang="ts">
import { isAppIcon } from '@/utils/common'
const props = defineProps<{
item: {
name: string
icon: string
}
}>()
</script>