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