File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { ConnectionService } from '@/services/ConnectionService';
5
5
import { ref } from ' vue' ;
6
6
7
7
var showMenu = ref (false );
8
+ var showUsers = ref (false );
8
9
9
10
const conService = new ConnectionService ();
10
11
const cardService = new CardService (conService );
@@ -32,7 +33,7 @@ const cardService = new CardService(conService);
32
33
<button type =" button" @click =" showMenu = !showMenu" >
33
34
<font-awesome-icon :icon =" ['fas', 'gear']" />
34
35
</button >
35
- <button type =" button" >
36
+ <button type =" button" @click = " showUsers = !showUsers " >
36
37
<font-awesome-icon :icon =" ['fas', 'users']" />
37
38
</button >
38
39
<button type =" button" >
@@ -41,7 +42,7 @@ const cardService = new CardService(conService);
41
42
<button type =" button" >
42
43
<font-awesome-icon :icon =" ['fas', 'dice-d20']" />
43
44
</button >
44
- <button type =" button" >
45
+ <button type =" button" @click = " $router.go(-1) " >
45
46
<font-awesome-icon :icon =" ['fas', 'door-closed']" />
46
47
</button >
47
48
</div >
You can’t perform that action at this time.
0 commit comments