diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-14 09:06:45 +0100 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-14 09:06:45 +0100 |
commit | fb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f (patch) | |
tree | 5c56de50d9b59d156a46e072b2d434a06d7be41a /src | |
parent | 193a6b59425ab45004f4178fc3f5b5bad5b4c660 (diff) | |
download | lom_frontend-fb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f.tar.gz lom_frontend-fb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f.zip |
clean up project tree
Diffstat (limited to 'src')
-rw-r--r-- | src/components/group/GroupMaker.vue (renamed from src/components/GroupMaker.vue) | 0 | ||||
-rw-r--r-- | src/components/group/GroupView.vue (renamed from src/components/GroupView.vue) | 0 | ||||
-rw-r--r-- | src/components/searcher/Searcher.vue (renamed from src/components/Searcher.vue) | 2 | ||||
-rw-r--r-- | src/components/searcher/Sugestion.vue (renamed from src/components/Sugestion.vue) | 0 | ||||
-rw-r--r-- | src/views/Home.vue | 9 |
5 files changed, 7 insertions, 4 deletions
diff --git a/src/components/GroupMaker.vue b/src/components/group/GroupMaker.vue index f3da293..f3da293 100644 --- a/src/components/GroupMaker.vue +++ b/src/components/group/GroupMaker.vue | |||
diff --git a/src/components/GroupView.vue b/src/components/group/GroupView.vue index 1608cf4..1608cf4 100644 --- a/src/components/GroupView.vue +++ b/src/components/group/GroupView.vue | |||
diff --git a/src/components/Searcher.vue b/src/components/searcher/Searcher.vue index df6dd9e..f8dd51f 100644 --- a/src/components/Searcher.vue +++ b/src/components/searcher/Searcher.vue | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | <script> | 21 | <script> |
22 | import CommandsService from '@/services/CommandsService' | 22 | import CommandsService from '@/services/CommandsService' |
23 | import Sugestion from '@/components/Sugestion.vue' | 23 | import Sugestion from '@/components/searcher/Sugestion.vue' |
24 | 24 | ||
25 | export default { | 25 | export default { |
26 | data() { | 26 | data() { |
diff --git a/src/components/Sugestion.vue b/src/components/searcher/Sugestion.vue index 4721ca2..4721ca2 100644 --- a/src/components/Sugestion.vue +++ b/src/components/searcher/Sugestion.vue | |||
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> |
19 | import Searcher from '@/components/Searcher.vue' | 19 | import Searcher from '@/components/searcher/Searcher.vue' |
20 | import GroupMaker from '@/components/GroupMaker.vue' | 20 | import GroupMaker from '@/components/group/GroupMaker.vue' |
21 | 21 | ||
22 | const popups = { | 22 | const 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 }, |