You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.1 KiB
TypeScript

// 模拟后端动态生成路由
import { defineFakeRoute } from "vite-plugin-fake-server/client";
/**
* roles "admin""common"
* admin
* common
*/
// const permissionRouter = {
// path: "/permission",
// meta: {
// title: "权限管理",
// icon: "ep:lollipop",
// rank: 10
// },
// children: [
// {
// path: "/permission/page/index",
// name: "PermissionPage",
// meta: {
// title: "页面权限",
// roles: ["admin", "common"]
// }
// },
// {
// path: "/permission/button/index",
// name: "PermissionButton",
// meta: {
// title: "按钮权限",
// roles: ["admin", "common"],
// auths: [
// "permission:btn:add",
// "permission:btn:edit",
// "permission:btn:delete"
// ]
// }
// }
// ]
// };
export default defineFakeRoute([
{
url: "/get-async-routes",
method: "get",
response: () => {
return {
success: true,
data: []
};
}
}
]);