index.js 163 B

12345678
  1. import hasRoles from "./roles/index.js"
  2. // 自定义指令 v-hasRoles
  3. function directive(app) {
  4. app.directive('hasRoles',hasRoles)
  5. }
  6. export default directive;