File tree 3 files changed +43
-0
lines changed
3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 34
34
</router-link >
35
35
</li >
36
36
37
+ <li >
38
+ <router-link :to =" { name: 'help/roadmap' }" >
39
+ Is there a roadmap?
40
+ </router-link >
41
+ </li >
42
+
37
43
<li >
38
44
<router-link :to =" { name: 'help/creating-group' }" >
39
45
How to create a group?
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div style =" font-size : 28px ; font-weight : bold " >{{ title }}</div >
3
+
4
+ <Gap style =" height : 36px " />
5
+
6
+ <div >
7
+ Yes, it is available at:
8
+
9
+ <div >
10
+ <a
11
+ href =" https://deepnotes.app/pages/voEG2WDb5e2x1Ep6hjwVp"
12
+ target =" _blank"
13
+ >
14
+ https://deepnotes.app/pages/voEG2WDb5e2x1Ep6hjwVp
15
+ </a >
16
+ </div >
17
+ </div >
18
+ </template >
19
+
20
+ <script setup lang="ts">
21
+ const title = ' Is there a roadmap?' ;
22
+
23
+ useMeta (() => ({
24
+ title: ` ${title } - Help - DeepNotes ` ,
25
+ }));
26
+ </script >
Original file line number Diff line number Diff line change @@ -200,6 +200,17 @@ const routes: RouteRecordRaw[] = [
200
200
} ,
201
201
] ,
202
202
} ,
203
+ {
204
+ path : 'roadmap' ,
205
+ component : ( ) => import ( 'src/pages/home/Help/HelpLayout.vue' ) ,
206
+ children : [
207
+ {
208
+ path : '' ,
209
+ name : 'help/roadmap' ,
210
+ component : ( ) => import ( 'src/pages/home/Help/Pages/Roadmap.vue' ) ,
211
+ } ,
212
+ ] ,
213
+ } ,
203
214
] ,
204
215
} ,
205
216
You can’t perform that action at this time.
0 commit comments