canteen_system/src/stores/modules/routing.ts

11 lines
280 B
TypeScript

// 小仓库:动态路由
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 {};
});