File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <div class = " route-display " >
3
- <q-input
2
+ <div >
3
+ <q-input
4
4
@keyup.enter.native =" handleEnterKeyPress"
5
5
standout =" bg-teal text-white"
6
6
bottom-slots
10
10
class =" input-add"
11
11
>
12
12
</q-input >
13
+ <!-- <div class="route-display">-->
14
+ <!--
15
+
16
+ -->
13
17
<Routes ></Routes >
14
18
</div >
15
19
</template >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div class =" route-view" >
2
+ <div >
3
+ <!-- <div class="route-view">-->
3
4
<a
4
5
:class =" route === activeRoute ? 'panel-block is-active' : 'panel-block'"
5
6
v-for =" route in Object.keys(routes)"
6
7
:key =" route"
7
8
@click =" handleClick(route)"
8
9
>
10
+ <!--
9
11
<span class="panel-icon">
10
12
<i class="fas fa-location-arrow" aria-hidden="true"></i>
11
13
</span>
12
- {{ route }}
14
+ -->
15
+ <q-list bordered separator >
16
+ <q-item clickable v-ripple >
17
+ <q-item-section >{{route}}</q-item-section >
18
+
19
+ </q-item >
20
+
21
+ </q-list >
22
+
13
23
</a >
14
24
</div >
25
+
15
26
</template >
16
27
17
28
<script >
You can’t perform that action at this time.
0 commit comments