web
9 天以前 12c72e520e0ff9d738b9dac5ce84a4821a75e6e3
1
2
3
4
5
6
7
8
9
import hasRole from './permission/hasRole'
import hasPermi from './permission/hasPermi'
import copyText from './common/copyText'
 
export default function directive(app){
  app.directive('hasRole', hasRole)
  app.directive('hasPermi', hasPermi)
  app.directive('copyText', copyText)
}