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

fix: tooltip function not affect of AvatarList.vue;
This commit is contained in:
chenghongxing 2020-11-22 16:52:24 +08:00
parent a8dab1687a
commit d638eaa6bf

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]
)
}
}