Skip to content

Commit 36bdca3

Browse files
Working on updating file structure in components folder
Co-authored by Faraz Moallemi [email protected]
1 parent 452a021 commit 36bdca3

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

src/components/ComponentDisplay.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Description:
3434
<p>{{ componentData.componentName }}</p>
3535
</div>
3636
<div class="component-html-info">
37-
<p>Elements in Component:</p>
37+
<!-- <p>Elements in Component:</p> -->
3838
<p
3939
class="list-of-elements"
4040
v-for="htmlElement in componentMap[componentData.componentName]

src/components/HomeSideDropDown.vue

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
<!--
22
Description:
3-
Displays dropdown for Components, Routes, and Vuex
4-
Functionality includes: N/A
5-
-->
3+
Displays dropdown for Components, Routes, and Vuex in Home Sidebar
4+
-->
65

76
<template>
87
<div class="q-pa-md" style="max-width: 350px">
98
<q-list padding bordered class="rounded-borders drawer-menu">
109
<q-expansion-item dense dense-toggle expand-separator label="Components">
11-
<q-card>
12-
<div class="input-container" style='height: 130px'>
13-
<ComponentList />
14-
</div>
15-
</q-card>
10+
<q-card>
11+
<div class="input-container" style="height: 130px">
12+
<ComponentList />
13+
</div>
14+
</q-card>
1615
</q-expansion-item>
1716
<q-expansion-item dense dense-toggle expand-separator label="Routes">
1817
<q-card>
19-
<div class="input-container" style='height: 150px'>
18+
<div class="input-container" style="height: 150px">
2019
<RouteDisplay />
2120
<br />
2221
</div>
@@ -45,23 +44,23 @@ export default {
4544
RouteDisplay,
4645
VuexForm,
4746
ComponentList
48-
}
4947
}
48+
}
5049
</script>
5150

5251
<style lang="stylus">
5352
54-
.input-add {
55-
margin: 0em 1em 0em 1em;
56-
}
53+
.input-add {
54+
margin: 0em 1em 0em 1em;
55+
}
5756
5857
.input-container {
59-
margin-top: 1rem;
60-
background: $subsecondary;
61-
overflow-y: auto;
62-
}
58+
margin-top: 1rem;
59+
background: $subsecondary;
60+
overflow-y: auto;
61+
}
6362
6463
.red {
65-
background: red;
66-
}
64+
background: red;
65+
}
6766
</style>

src/components/EditQueue.vue renamed to src/components/UnusedFeatures/EditQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Description:
33
Is not imported in current version of OverVue
44
Functionality includes: N/A
55
-->
6-
6+
<!--
77
<template>
88
<div>
99
<p class="panel-heading">Selected Elements</p>

src/components/Toolbar.vue renamed to src/components/UnusedFeatures/Toolbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Description:
33
Is not imported in current version of OverVue
44
Functionality includes: N/A
55
-->
6-
6+
<!--
77
<template>
88
<div class="home-sidebar">
99
<q-btn-group>

0 commit comments

Comments
 (0)