新增AvatarList组件
This commit is contained in:
23
src/components/detail/BasicDetail.vue
Normal file
23
src/components/detail/BasicDetail.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div>
|
||||
<a-card :bordered="false">
|
||||
<a-tooltip slot="title" title="test" >
|
||||
<a-avatar src="https://gw.alipayobjects.com/zos/rmsportal/ZiESqWwCXBRQoaPONSJe.png" />
|
||||
</a-tooltip>
|
||||
</a-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ACard from 'vue-antd-ui/es/card/Card'
|
||||
import ATooltip from 'vue-antd-ui/es/tooltip/Tooltip'
|
||||
import AAvatar from 'vue-antd-ui/es/avatar/Avatar'
|
||||
export default {
|
||||
name: 'BasicDetail',
|
||||
components: {AAvatar, ATooltip, ACard}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user