index.js 1.0 KB

123456789101112131415161718192021222324252627282930
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. /**
  11. * 插件
  12. * */
  13. // 错误捕获
  14. import pluginError from '@/plugins/error';
  15. // 日志插件
  16. import pluginLog from '@/plugins/log';
  17. // 鉴权指令
  18. import directiveAuth from '@/plugins/auth';
  19. export default {
  20. async install (Vue, options) {
  21. // 插件
  22. Vue.use(pluginError);
  23. Vue.use(pluginLog);
  24. // 指令
  25. Vue.directive('auth', directiveAuth);
  26. }
  27. }