/*
 * @Author: wfl
 * @LastEditors: wfl
 * @description:
 * @updateInfo:
 * @Date: 2022-08-12 18:42:51
 * @LastEditTime: 2022-09-06 15:17:48
 */
/**
 * Configure and register global directives
 */
import ikingDirective from 'iking-directive';
import type { App } from 'vue';
import { setupLoadingDirective } from './loading';
export function setupGlobDirectives(app: App) {
  setupLoadingDirective(app);
  app.use(ikingDirective);
}
