10 lines
147 B
Vue
10 lines
147 B
Vue
<template>
|
|
<img :src="props.src" :alt="props.alt">
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
src: String,
|
|
alt: String
|
|
})
|
|
</script> |