chenrui
2025-05-26 3ee713b4feb3b1dba3b66f59c4bd25ecf69a791f
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)
}