canteen_system/src/stores/modules/routing.ts

11 lines
280 B
TypeScript
Raw Normal View History

2025-04-25 09:17:25 +08:00
// 小仓库:动态路由
import { defineStore } from "pinia";
import { ref } from "vue";
import api from "@/axios";
export const routingStore = defineStore("routing", () => {
// const resp = api.get("/management/auth/myAuthRouter");
// console.log(resp);
return {};
});