Files
jczxw-java/src/directive/index.js
weicw 97df9286bb 改变结构
添加权限指令
2021-08-05 18:26:07 +08:00

12 lines
201 B
JavaScript

import hasRole from './hasRole'
import hasPermi from './hasPermi'
const install = function(app) {
app.directive('hasRole', hasRole)
app.directive('hasPermi', hasPermi)
}
export default install