Browse
For agents
About
Plugin Detective – Troubleshooting Conflicts
/
1.1.4
Plugin Detective – Troubleshooting Conflicts
v1.1.4
Switch version
1.2.35
1.2.33
1.2.32
1.2.31
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.1.7
1.1.8
1.1.9
1.2
1.2.1
1.2.10
1.2.12
1.2.13
1.2.14
1.2.16
1.2.19
1.2.20
1.2.22
1.2.23
1.2.24
All 54 releases
Overview
Code
plugin-detective
/
troubleshoot
/
app
/
src
/
components
/
Bubble.vue
Bubble.vue
in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/components/Bubble.vue
31 lines
581 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
template
>
2
<
div
class
=
"
bubble-wrap
"
>
3
<
div
class
=
"
bubble
"
v-if
=
"
open
"
>
4
<
div
class
=
"
close
"
@click
=
"
toggleOpen
"
>
5
<
md-icon>close</md-icon>
6
</div
>
7
<
slot
>
</
slot
>
8
</
div
>
9
<
div
class
=
"
toggle
"
v-else
>
10
<
div
class
=
"
open
"
@click
=
"
toggleOpen
"
>
11
<
md-icon class="md-accent">chat</md-icon>
12
</div
>
13
</
div
>
14
</
div
>
15
</
template
>
16
17
<
script
>
18
export
default
{
19
name
:
'
hello
'
,
20
data
(
)
{
21
return
{
22
open
:
true
23
}
24
}
,
25
methods
:
{
26
toggleOpen
(
)
{
27
this
.
open
=
!
this
.
open
28
}
29
}
30
}
31
</
script
>