added Back To Top functionality and Pankuzu list, Q and A Box, and Hamburger menu components

This commit is contained in:
2024-10-12 20:52:13 +09:00
parent 545ac73e0e
commit e99db9f8bd
80 changed files with 1413 additions and 723 deletions

View File

@@ -17,7 +17,7 @@ if (data.value === undefined || data.value === null) {
onMounted(() => {
const article = document.getElementById("article");
const articleTitle = article?.getElementsByTagName("h1")[0];
const postedDate = new Date(data.value?.date).toLocaleDateString(
const postedDate = new Date(data.value?.date as number).toLocaleDateString(
"ja-JP-u-ca-japanese",
{ dateStyle: "medium" }
);