vue文档链接 自定义指令
vue除了提供默认的十分丰富的指令给我们实现不同的需求,也提供了自定义组件的功能。
鉴权指令
import {
check
}
from '../utils/auth'
function install(Vue, options = {}) {
Vue.directive(options.name || 'auth', {
inserted(el, binding) {
if (!check(binding.value)) {
el.parentNode && el.parentNode.removeChildren(el)
}
}
})
}
export
default {
install
}