From d638eaa6bf2282b454f28d7211440e8f48e7c23e Mon Sep 17 00:00:00 2001 From: chenghongxing <1126263215@qq.com> Date: Sun, 22 Nov 2020 16:52:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9A=E5=A4=B4=E5=83=8F?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=BB=84=E4=BB=B6=20tooltip=20=E4=B8=8D?= =?UTF-8?q?=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98;=20:bug:=20fix:?= =?UTF-8?q?=20tooltip=20function=20not=20affect=20of=20AvatarList.vue?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/tool/AvatarList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tool/AvatarList.vue b/src/components/tool/AvatarList.vue index f2c0715..7390cce 100644 --- a/src/components/tool/AvatarList.vue +++ b/src/components/tool/AvatarList.vue @@ -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] ) } }