Files
uni/dev/Image.vue
2023-07-10 19:26:19 +08:00

20 lines
368 B
Vue

<!--
* @Author: zhaojinfeng 121016171@qq.com
* @Date: 2023-07-10 14:39:45
* @LastEditors: zhaojinfeng 121016171@qq.com
* @LastEditTime: 2023-07-10 18:34:50
* @FilePath: \uni\dev\image.vue
* @Description:
*
-->
<template>
<img :src="src" :alt="alt">
</template>
<script setup lang="ts" name="Image">
defineProps<{
alt?: string
src?: string
}>()
</script>