feat: notes and first item view

This commit is contained in:
Julien Calixte
2026-02-10 22:21:59 +01:00
parent c638914f56
commit 95b4eb7c44
4 changed files with 59 additions and 4 deletions

View File

@@ -14,15 +14,21 @@ const routes: Array<RouteRecordRaw> = [
props: true,
component: () => import("@/views/FluxNoteView.vue"),
},
{
path: "/tiboudenote",
name: "PublicNoteListView",
component: () => import("@/views/PublicNoteListView.vue"),
},
{
path: "/notes",
name: "PublicNoteListView",
component: () => import("@/views/PublicNoteListView.vue"),
},
{
path: "/tiboudenote",
name: "PublicNoteListView",
component: () => import("@/views/PublicNoteListView.vue"),
path: "/notes/:did/:rkey",
name: "PublicNoteView",
props: true,
component: () => import("@/views/PublicNoteView.vue"),
},
{
path: "/:user/:repo/inbox",