1919 </v-list-item-content >
2020 </v-list-item >
2121 <v-list-item
22- v-for =" (item, index) in subMenuEntries "
22+ v-for =" (item, index) in subMenuEntriesDocs "
2323 :key =" `sub` + index"
2424 :to =" item.to"
2525 :href =" item.href"
2626 :target =" item.external ? '_blank' : ''"
2727 >
28- <v-list-item-title >{{ item.title }}</v-list-item-title >
28+ <v-list-item-title >{{ item.title_hide }}</v-list-item-title >
29+ <v-icon v-if =" item.external" right small >mdi-open-in-new</v-icon >
30+ </v-list-item >
31+ <v-list-item
32+ v-for =" (item, index) in subMenuEntriesAbout"
33+ :key =" `sub` + index"
34+ :to =" item.to"
35+ :href =" item.href"
36+ :target =" item.external ? '_blank' : ''"
37+ >
38+ <v-list-item-title >{{ item.title_hide }}</v-list-item-title >
2939 <v-icon v-if =" item.external" right small >mdi-open-in-new</v-icon >
3040 </v-list-item >
3141 <v-list-item :href =" vreHref" target =" _blank" >
6777 <template #activator =" { on , attrs } " >
6878 <v-btn v-bind =" attrs" text v-on =" on" >
6979 <v-icon >mdi-chevron-down</v-icon >
70- More
80+ Docs
7181 </v-btn >
7282 </template >
7383 <v-list >
7484 <v-list-item
75- v-for =" (item, index) in subMenuEntries "
85+ v-for =" (item, index) in subMenuEntriesDocs "
7686 :key =" `sub` + index"
7787 :to =" item.to"
7888 :href =" item.href"
91101 </v-list-item >
92102 </v-list >
93103 </v-menu >
104+ <v-menu v-if =" $vuetify.breakpoint.mdAndUp" left offset-y >
105+ <template #activator =" { on , attrs } " >
106+ <v-btn v-bind =" attrs" text v-on =" on" >
107+ <v-icon >mdi-chevron-down</v-icon >
108+ About
109+ </v-btn >
110+ </template >
111+ <v-list >
112+ <v-list-item
113+ v-for =" (item, index) in subMenuEntriesAbout"
114+ :key =" `sub` + index"
115+ :to =" item.to"
116+ :href =" item.href"
117+ :target =" item.external ? '_blank' : ''"
118+ >
119+ <v-list-item-title >{{ item.title }}</v-list-item-title >
120+ <v-icon v-if =" item.external" right small >mdi-open-in-new</v-icon >
121+ </v-list-item >
122+ <v-list-item
123+ v-if =" $vuetify.breakpoint.mdAndDown"
124+ :href =" vreHref"
125+ target =" _blank"
126+ >
127+ <v-list-item-title >Benchmark your Tool</v-list-item-title >
128+ <v-icon right small >mdi-open-in-new</v-icon >
129+ </v-list-item >
130+ </v-list >
131+ </v-menu >
132+
94133 <v-spacer />
95134 <v-btn
96135 v-if =" $vuetify.breakpoint.lgAndUp"
136175<script >
137176import CookieLaw from ' vue-cookie-law' ;
138177import menuEntries from ' ./menuEntries' ;
139- import subMenuEntries from ' ./subMenuEntries' ;
178+ import subMenuEntriesDocs from ' ./subMenuEntriesDocs' ;
179+ import subMenuEntriesAbout from ' ./subMenuEntriesAbout' ;
140180import opebLogo from ' ~/static/images/opeb_logo.gif' ;
141181
142182export default {
@@ -153,7 +193,8 @@ export default {
153193 openNavMobile: null ,
154194 fixed: false ,
155195 menuEntries,
156- subMenuEntries,
196+ subMenuEntriesDocs,
197+ subMenuEntriesAbout,
157198 opebLogo,
158199 };
159200 },
0 commit comments