Skip to content

Commit b94135e

Browse files
committed
added routes
1 parent 8353f4f commit b94135e

File tree

9 files changed

+130
-66
lines changed

9 files changed

+130
-66
lines changed

package-lock.json

Lines changed: 19 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"mousetrap": "^1.6.3",
1818
"quasar": "^1.0.0",
1919
"vue-draggable-resizable": "^2.0.0-rc2",
20+
"vue-loader": "^15.7.0",
2021
"vue-multiselect": "^2.1.6",
2122
"vued3tree": "^3.7.1"
2223
},

src/components/CreateComponent.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
>
1414
</q-input>
1515
</form>
16-
1716
<div class="icon-container">
1817
<Icons @getClickedIcon="addToSelectedElementList" />
1918
</div>

src/components/HomeSideDropDown.vue

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,8 @@
2626
<q-card>
2727
<q-card-section>
2828
<div class="input-container">
29-
<q-input
30-
standout="bg-teal text-white"
31-
bottom-slots
32-
v-model="text"
33-
label="Add Route"
34-
:dense="dense"
35-
class="input-add"
36-
>
37-
<template v-slot:append>
38-
<q-btn round dense flat icon="add" />
39-
</template>
40-
</q-input>
29+
<RouteDisplay />
30+
<br>
4131
</div>
4232
</q-card-section>
4333
</q-card>
@@ -90,6 +80,15 @@
9080
</q-list>
9181
</div>
9282
</template>
83+
<script>
84+
import RouteDisplay from '../components/RouteDisplay'
85+
86+
export default {
87+
components: {
88+
RouteDisplay
89+
}
90+
}
91+
</script>
9392

9493
<style lang="stylus" scoped>
9594
.input-add {

0 commit comments

Comments
 (0)