| 1234567891011121314151617181920 |
- import { ObjectDirective } from 'vue';
- import { usePermission } from '@/hooks/web/usePermission';
- export const permission: ObjectDirective = {
- mounted(el: HTMLButtonElement, binding) {
- if (binding.value == undefined) return;
- const { action, effect } = binding.value;
- const { hasPermission } = usePermission();
- if (!hasPermission(action)) {
- if (effect == 'disabled') {
- el.disabled = true;
- el.style['disabled'] = 'disabled';
- el.classList.add('is-disabled');
- } else {
- el.remove();
- }
- }
- },
- };
|