wip: 头像列表开发中

This commit is contained in:
kailong321200875
2024-02-28 15:06:37 +08:00
parent 4146716655
commit 7f6464abc4
7 changed files with 59 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
import Avatars from './src/Avatars.vue'
export { Avatars }

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
import { ComponentSize } from 'element-plus'
import { PropType } from 'vue'
defineProps({
size: {
type: String as PropType<ComponentSize>,
default: ''
}
})
</script>
<template>
<div> 头像 </div>
</template>