From 07da28634c5e4d5396ac9594b1a3ce7ad0279d3a Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 12 Jan 2026 16:36:13 +0000 Subject: [PATCH] adding obsidian support --- nginx/vue/src/views/Notes.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/vue/src/views/Notes.vue b/nginx/vue/src/views/Notes.vue index 8aa2526..d3528b4 100644 --- a/nginx/vue/src/views/Notes.vue +++ b/nginx/vue/src/views/Notes.vue @@ -6,7 +6,7 @@ import axios from "axios"; const note = ref(null); const fetchNote = async () => { - const response = await axios.get("/api/notes/Welcome"); + const response = await axios.get("/api/notes/Index"); note.value = response.data; }; @@ -19,7 +19,7 @@ onMounted(fetchNote);

{{ note.title }}

{{ note.last_edited }}