shadcn-vue/packages/shadcn-vue/src/components/Avatar/AvatarImage.vue
2023-07-04 04:29:47 +08:00

10 lines
147 B
Vue

<template>
<img :src="props.src" :alt="props.alt">
</template>
<script setup>
const props = defineProps({
src: String,
alt: String
})
</script>