index.js 318 B

123456789101112131415
  1. import hasRole from './hasRole'
  2. import hasPerm from './hasPerm'
  3. const install = function(Vue) {
  4. Vue.directive('hasRole', hasRole)
  5. Vue.directive('hasPerm', hasPerm)
  6. }
  7. if (window.Vue) {
  8. window['hasRole'] = hasRole
  9. window['hasPerm'] = hasPerm
  10. Vue.use(install) // eslint-disable-line
  11. }
  12. export default install