feat: plugin-access中导出hasAccessSync方法

This commit is contained in:
harrywan 2024-05-30 15:39:53 +08:00
parent 5c516953b8
commit 9c01a5437d
2 changed files with 9 additions and 4 deletions

View File

@ -145,8 +145,13 @@ export const install = (app) => {
app.component("Access", createComponent(useAccess));
};
export const hasAccessSync = (path) => {
return match(unref(path), getAllowAccessIds());
}
export const access = {
hasAccess,
hasAccessSync,
isDataReady,
setRole,
getRole: () => {
@ -158,10 +163,6 @@ export const access = {
setPresetAccess,
};
export const hasAccessSync = (path) => {
return match(unref(path), getAllowAccessIds());
}
export const useAccess = (path) => {
const allowPageIds = computed(getAllowAccessIds);
const result = computed(() => {

View File

@ -3,10 +3,14 @@ import type { Ref } from 'vue';
export const access: {
hasAccess: (accessId: string | number) => Promise<boolean>;
hasAccessSync: (accessId: string | number) => boolean;
isDataReady: () => boolean;
setRole: (roleId: string | Promise<string>) => void;
getRole: () => string;
setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void;
getAccess: () => string[];
match: (path: string, accessIds: string[]) => boolean;
setPresetAccess: (accessId: string | string[]) => void;
};
export function useAccess(accessId: string | number): Ref<boolean>;