mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
修复:头像列表组件 tooltip 不生效的问题; 🐛
fix: tooltip function not affect of AvatarList.vue;
This commit is contained in:
parent
569a0754c8
commit
7c95b310a9
@ -35,7 +35,7 @@ const Item = {
|
|||||||
return h(
|
return h(
|
||||||
'li',
|
'li',
|
||||||
{class: 'avatar-item'},
|
{class: 'avatar-item'},
|
||||||
[!this.$props.tips ? h(ATooltip, {props: {title: this.$props.tips}}, [avatar]) : avatar]
|
[this.$props.tips ? h(ATooltip, {props: {title: this.$props.tips}}, [avatar]) : avatar]
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user