index.js 340 B

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