feat: 完成对接

This commit is contained in:
anonymous
2024-12-31 21:07:08 +08:00
parent ecd30a2e82
commit fecf6535a8
99 changed files with 2253 additions and 299 deletions
+28
View File
@@ -0,0 +1,28 @@
<script setup lang="ts">
import DefaultAavatar from '@/static/images/default-avatar.png'
defineProps({
src: {
type: String,
default: undefined,
},
})
</script>
<template>
<div
rounded-full
p-4
shadow-lg
style="background: linear-gradient(45deg, #3b81f3 0%, #37e6ec 100%)"
>
<image
block
overflow-hidden
rounded-full
style="background: linear-gradient(180deg, #96e517 0%, #8bc135 100%)"
class="h-full w-full"
:src="src ?? DefaultAavatar"
/>
</div>
</template>