1
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
d1956e3077
commit
671be02d13
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue