You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
562 B
18 lines
562 B
import { usePermissionStoreHook } from "/@/store/modules/permission";
|
|
import { Directive } from "vue";
|
|
import type { DirectiveBinding } from "vue";
|
|
|
|
export const auth: Directive = {
|
|
mounted(el: HTMLElement, binding: DirectiveBinding) {
|
|
const { value } = binding;
|
|
if (value) {
|
|
const authRoles = value;
|
|
const hasAuth = usePermissionStoreHook().buttonAuth.includes(authRoles);
|
|
if (!hasAuth) {
|
|
el.parentNode.removeChild(el);
|
|
}
|
|
} else {
|
|
throw new Error("need roles! Like v-auth=\"['admin','test']\"");
|
|
}
|
|
}
|
|
};
|