wujianwei
2025-08-15 4852999c52dd69d0f902c122045c80394cfeacd8
1
2
3
4
5
6
7
8
9
10
import {ComponentInternalInstance, getCurrentInstance} from "vue";
 
/**
 * ts 全局挂在会报错,只能先转一下
 */
export default function useCurrentInstance() {
    const {appContext} = getCurrentInstance() as ComponentInternalInstance
    const proxy = appContext.config.globalProperties;
    return {proxy}
}