File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed
Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 3434 </router-link >
3535 </li >
3636
37+ <li >
38+ <router-link :to =" { name: 'help/roadmap' }" >
39+ Is there a roadmap?
40+ </router-link >
41+ </li >
42+
3743 <li >
3844 <router-link :to =" { name: 'help/creating-group' }" >
3945 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[] = [
200200 } ,
201201 ] ,
202202 } ,
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+ } ,
203214 ] ,
204215 } ,
205216
You can’t perform that action at this time.
0 commit comments