first commit

This commit is contained in:
2026-04-14 15:06:26 +08:00
commit 9ee0c6c597
582 changed files with 61051 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<template>
<img :src="freshUrl" :alt="alt" />
</template>
<script setup>
import { computed } from 'vue'
const props = defineProps({
src: {
type: String,
required: true,
},
alt: {
type: String,
default: '',
},
})
const freshUrl = computed(() => {
return `${props.src}?t=${Date.now()}`
})
</script>