This commit is contained in:
2026-03-23 14:04:53 +01:00
parent 528f12b065
commit 15e8626280
15 changed files with 401 additions and 250 deletions

8
bo/src/router/menu.ts Normal file
View File

@@ -0,0 +1,8 @@
import { useFetchJson } from "@/composable/useFetchJson";
export const getMenu = async () => {
const resp = await useFetchJson('/api/v1/restricted/menu/get-menu');
return resp.items
}