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>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{ feedBack: true, 'feedBack-in': show, 'feedBack-out': !show }"
|
:class="{
|
||||||
|
feedBack: true,
|
||||||
|
'feedBack-in': show,
|
||||||
|
'feedBack-out': show === false,
|
||||||
|
}"
|
||||||
@click.stop="open"
|
@click.stop="open"
|
||||||
>
|
>
|
||||||
<i class="el-icon-chat-dot-square icon"></i>
|
<i class="el-icon-chat-dot-square icon"></i>
|
||||||
|
@ -18,7 +22,7 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
show: false,
|
show: null,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
Loading…
Reference in New Issue