PictureWidget.vue
376 Bytes
<script lang="ts" setup>
import { Image } from 'ant-design-vue';
const props = defineProps<{
value: {
src: string;
};
}>();
</script>
<template>
<section>
<Image
:src="
props?.value?.src ||
'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png'
"
/>
</section>
</template>
<style></style>