研发图纸文件管理系统-前端项目
修复:头像列表组件 tooltip 不生效的问题; :bug:
fix: tooltip function not affect of AvatarList.vue;
1个文件已修改
2 ■■■ 已修改文件
src/components/tool/AvatarList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/tool/AvatarList.vue
@@ -35,7 +35,7 @@
    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]
    )
  }
}