mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
14 lines
414 B
JavaScript
14 lines
414 B
JavaScript
import store from '@/store'
|
|
|
|
export default {
|
|
inserted(element, binding) {
|
|
const { value } = binding
|
|
const permissions = store.getters['user/permissions']
|
|
if (value && value instanceof Array && value.length > 0) {
|
|
const hasPermission = permissions.some((role) => value.includes(role))
|
|
if (!hasPermission)
|
|
element.parentNode && element.parentNode.removeChild(element)
|
|
}
|
|
},
|
|
}
|