123456789101112131415 |
- import hasRole from './hasRole'
- import hasPerm from './hasPerm'
- const install = function(Vue) {
- Vue.directive('hasRole', hasRole)
- Vue.directive('hasPerm', hasPerm)
- }
- if (window.Vue) {
- window['hasRole'] = hasRole
- window['hasPerm'] = hasPerm
- Vue.use(install) // eslint-disable-line
- }
- export default install
|