This commit is contained in:
Putoo
2026-05-30 17:32:27 +08:00
parent bd1535aee9
commit f8d4a28d53
79 changed files with 1369 additions and 134 deletions

View File

@@ -0,0 +1,13 @@
<template>
<img :src="BaseConfig.BaseMediaUrl + url" :class="_class" :alt="_alt">
</template>
<script setup>
import { BaseConfig } from "@/config/BaseConfig";
// 1. 定义接收父组件传来的参数 props
const props = defineProps({
// 字段名、类型、默认值
url: String,
_class: String,
_alt:String
})
</script>