fix: 🐛 类型导入错误问题修复

IA879P #IA879P
This commit is contained in:
hxr
2024-06-25 21:00:23 +08:00
parent 8e41161ba8
commit 035497f760
2 changed files with 2 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
import { RouteRecordRaw } from "vue-router";
import { constantRoutes } from "@/router";
import { store } from "@/store";
import MenuAPI from "@/api/menu";
import { RouteVO } from "@/api/menu/types";
import MenuAPI, { RouteVO } from "@/api/menu";
const modules = import.meta.glob("../../views/**/**.vue");
const Layout = () => import("@/layout/index.vue");