From 42d679b17b433fb5d389f3a58fd341e899fec12a Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 16 Mar 2024 00:16:40 -0400 Subject: [PATCH] add titles to routes --- src/content-env.d.ts | 1 + src/views/markdown.vue | 1 + src/views/project-list.vue | 1 + src/views/project-view.vue | 4 +++- 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/content-env.d.ts b/src/content-env.d.ts index a11ffe8..33baccf 100644 --- a/src/content-env.d.ts +++ b/src/content-env.d.ts @@ -14,6 +14,7 @@ declare module 'content/routes.js' { id: string stylesheetUrls: string[] template: Template + title: string } /** diff --git a/src/views/markdown.vue b/src/views/markdown.vue index b7892c5..f992e3e 100644 --- a/src/views/markdown.vue +++ b/src/views/markdown.vue @@ -15,6 +15,7 @@ const routeConfig = routeStore._routes[currentRoute.path] as MarkdownDefinition onMounted(async () => { content.value = await fetchAndParseMarkdown(routeConfig.content) + document.title = routeConfig.title }) diff --git a/src/views/project-list.vue b/src/views/project-list.vue index f98e18d..10c66e4 100644 --- a/src/views/project-list.vue +++ b/src/views/project-list.vue @@ -24,6 +24,7 @@ onMounted(async () => { const id = projectIds.value[i] projects.value[id] = await fetchAndParseYaml(config.projects[id].config) } + document.title = routeConfig.title ready.value = true }) diff --git a/src/views/project-view.vue b/src/views/project-view.vue index 90daa05..cb1677c 100644 --- a/src/views/project-view.vue +++ b/src/views/project-view.vue @@ -1,5 +1,5 @@