Add normal
This commit is contained in:
parent
7671a71141
commit
607f28ee0e
8 changed files with 365 additions and 73 deletions
|
|
@ -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 = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue