Add normal

This commit is contained in:
Methapon2001 2024-06-24 13:07:27 +07:00
parent 7671a71141
commit 607f28ee0e
8 changed files with 365 additions and 73 deletions

View file

@ -37,8 +37,14 @@ const toggleBtnLeft = () => {
};
onMounted(async () => {
const data = await fetch("/toc.json").then((r) => r.json());
menuList.value[1].children = data;
{
const data = await fetch("/toc.json").then((r) => r.json());
menuList.value[1].children = data;
}
{
const data = await fetch("/pages.json").then((r) => r.json());
menuList.value.push(...data);
}
});
const downloadFile = () => {