summaryrefslogtreecommitdiffstats
path: root/src/views/Home.vue
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2021-12-14 09:06:45 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2021-12-14 09:06:45 +0100
commitfb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f (patch)
tree5c56de50d9b59d156a46e072b2d434a06d7be41a /src/views/Home.vue
parent193a6b59425ab45004f4178fc3f5b5bad5b4c660 (diff)
downloadlom_frontend-fb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f.tar.gz
lom_frontend-fb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f.zip
clean up project tree
Diffstat (limited to 'src/views/Home.vue')
-rw-r--r--src/views/Home.vue9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/views/Home.vue b/src/views/Home.vue
index abf6fc8..1fbbb7f 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -16,8 +16,8 @@
16</template> 16</template>
17 17
18<script> 18<script>
19import Searcher from '@/components/Searcher.vue' 19import Searcher from '@/components/searcher/Searcher.vue'
20import GroupMaker from '@/components/GroupMaker.vue' 20import GroupMaker from '@/components/group/GroupMaker.vue'
21 21
22const popups = { 22const popups = {
23 searcher_show: false, 23 searcher_show: false,
@@ -37,7 +37,10 @@ export default {
37 this.$router.push('/login') 37 this.$router.push('/login')
38 }, 38 },
39 39
40 toogleSearcherShow() { this.popups.searcher_show = !this.popups.searcher_show }, 40 toogleSearcherShow() {
41 this.popups.searcher_show = !this.popups.searcher_show
42 this.popups.group_maker_show = false
43 },
41 hideSearcher() { this.popups.searcher_show = false }, 44 hideSearcher() { this.popups.searcher_show = false },
42 45
43 toogleGroupShow() { this.popups.group_maker_show = !this.popups.group_maker_show }, 46 toogleGroupShow() { this.popups.group_maker_show = !this.popups.group_maker_show },