microFactory/src/directive/index.js

11 lines
395 B
JavaScript
Raw Normal View History

2025-02-19 08:05:19 +00:00
import hasRole from './permission/hasRole'
import hasPermi from './permission/hasPermi'
import copyText from './common/copyText'
2025-02-27 01:14:31 +00:00
import tableAutoScroll from './tableScroll/tableAutoScroll'
2025-02-19 08:05:19 +00:00
export default function directive(app){
app.directive('hasRole', hasRole)
app.directive('hasPermi', hasPermi)
app.directive('copyText', copyText)
2025-02-27 01:14:31 +00:00
app.directive('tableAutoScroll', tableAutoScroll)
2025-02-19 08:05:19 +00:00
}