summaryrefslogtreecommitdiffstats
path: root/src/views/Home.vue
diff options
context:
space:
mode:
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 },