1
continuous-integration/drone/push Build is running Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-07-26 14:46:17 +08:00
parent d1956e3077
commit 671be02d13
1 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
<template>
<div
:class="{ feedBack: true, 'feedBack-in': show, 'feedBack-out': !show }"
:class="{
feedBack: true,
'feedBack-in': show,
'feedBack-out': show === false,
}"
@click.stop="open"
>
<i class="el-icon-chat-dot-square icon"></i>
@ -18,7 +22,7 @@ export default {
data() {
return {
visible: false,
show: false,
show: null,
};
},
mounted() {