index.js 210 B

1234567
  1. import hasRole from './permission/hasRole'
  2. import hasPermi from './permission/hasPermi'
  3. export default function directive(app){
  4. app.directive('hasRole', hasRole)
  5. app.directive('hasPermi', hasPermi)
  6. }