mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-11 15:09:46 +08:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import { getCurrentInstance } from 'vue';
|
|
|
|
// expose public api
|
|
export function usePublicApi(apis: Record<string, any>) {
|
|
const vm = (getCurrentInstance() as any).ctx;
|
|
Object.assign(vm, apis);
|
|
}
|