修复:头像列表组件 tooltip 不生效的问题; 🐛

fix: tooltip function not affect of AvatarList.vue;
This commit is contained in:
chenghongxing 2020-11-22 17:23:09 +08:00
parent 569a0754c8
commit 7c95b310a9

View File

@ -35,7 +35,7 @@ const Item = {
return h(
'li',
{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]
)
}
}