first commit

This commit is contained in:
2026-06-03 10:09:03 +08:00
commit 81f5039458
6266 changed files with 188236 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { onMounted } from "vue";
import { getMenus } from "@/api/menu";
onMounted(async () => {
try{
const response = await getMenus();
} catch (error) {
console.error('获取菜单数据失败:', error);
}
});