You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
523 B
24 lines
523 B
7 years ago
|
<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>
|