adding obsidian support

This commit is contained in:
2026-01-12 16:32:45 +00:00
parent e1a122072a
commit 721522bfa4

View File

@@ -6,7 +6,7 @@ import axios from "axios";
const note = ref(null);
const fetchNote = async () => {
const response = await axios.post("/api/notes/Welcome");
const response = await axios.get("/api/notes/Welcome");
note.value = response.data;
};