wip: 头像列表开发中
This commit is contained in:
3
src/components/Avatars/index.ts
Normal file
3
src/components/Avatars/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import Avatars from './src/Avatars.vue'
|
||||
|
||||
export { Avatars }
|
||||
15
src/components/Avatars/src/Avatars.vue
Normal file
15
src/components/Avatars/src/Avatars.vue
Normal 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>
|
||||
Reference in New Issue
Block a user