zhouhongshuo ca9430f82c 初始化
2024-08-25 23:46:05 +08:00

23 lines
443 B
Vue

<script lang="ts" setup>
import type { Plugin } from "@halo-dev/api-client";
import { VAvatar, VEntityField } from "@halo-dev/components";
withDefaults(
defineProps<{
plugin: Plugin;
}>(),
{}
);
</script>
<template>
<VEntityField>
<template #description>
<VAvatar
:alt="plugin.spec.displayName"
:src="plugin.status?.logo"
size="md"
></VAvatar>
</template>
</VEntityField>
</template>