进度到修改头像的弹窗

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2025-06-09 20:50:52 +08:00
parent 56d2e09290
commit 396c0d32a7
71 changed files with 9487 additions and 185 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<span class="avatar" :class="'avatar-'+size" :style="'background-image: url('+url+')'"></span>
</template>
<script>
export default {
name:"avatar",
props: {
url: {
type: String, // 指定类型
},
size: {
type: String, // 指定类型
default:"sm"
}
},
data() {
return {
};
}
}
</script>
<style>
</style>