vben
2020-12-07 74e62cbc712bdd4d4826e5fe80f537d87e44ffce
1
2
3
4
5
6
7
8
9
import { getCurrentInstance } from 'vue';
 
// expose public api
export function useExpose(apis: Record<string, any>) {
  const instance = getCurrentInstance();
  if (instance) {
    Object.assign(instance.proxy, apis);
  }
}