File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ const navigation = [
8989 { route: " account.project.list" , active: " shop" },
9090 { route: " account.extension.list" },
9191 { route: " account.organizations.list" , active: " organizations" },
92+ { route: " account.docs" },
9293];
9394
9495function isActive(item : { route: string ; active? : string }, $route : RouteLocationNormalizedLoaded ) {
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import FaCodeBranch from "~icons/fa6-solid/code-branch";
1919import Dashboard from "~icons/ri/dashboard-fill" ;
2020import FaFolder from "~icons/fa6-solid/folder" ;
2121import FaBuilding from "~icons/fa6-solid/building" ;
22+ import FaBook from "~icons/fa6-solid/book" ;
2223
2324const session = authClient . useSession ( ) ;
2425
@@ -256,6 +257,15 @@ export const router = createRouter({
256257 icon : FaPlug ,
257258 } ,
258259 } ,
260+ {
261+ name : "account.docs" ,
262+ path : "docs" ,
263+ component : ( ) => import ( "@/views/Docs.vue" ) ,
264+ meta : {
265+ title : "Documentation" ,
266+ icon : FaBook ,
267+ } ,
268+ } ,
259269 {
260270 name : "account.organization.accept" ,
261271 path : "organizations/accept/:token" ,
You can’t perform that action at this time.
0 commit comments