Blame view
src/directive/permission/permission.js
585 Bytes
d7d9c38c2 auto commit the c... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import store from '@/store' export default { inserted(el, binding, vnode) { const { value } = binding const roles = store.getters && store.getters.roles if (value && value instanceof Array && value.length > 0) { const permissionRoles = value const hasPermission = roles.some(role => { return permissionRoles.includes(role) }) if (!hasPermission) { el.parentNode && el.parentNode.removeChild(el) } } else { |
3d3cdb68f auto commit the c... |
19 |
throw new Error(`need roles! Like v-permission="['admin','assistant', 'shoper', 'runner']"`) |
d7d9c38c2 auto commit the c... |
20 21 22 |
} } } |