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

fix: tooltip function not affect of AvatarList.vue;
master
chenghongxing 4 years ago
parent a8dab1687a
commit d638eaa6bf
  1. 2
      src/components/tool/AvatarList.vue

@ -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…
Cancel
Save