123456789101112 |
-
- import { ComponentInternalInstance, getCurrentInstance } from 'vue'
- export default function useInstance() {
- const { appContext, proxy } = getCurrentInstance() as ComponentInternalInstance;
- const global = appContext.config.globalProperties;
-
- return {
- proxy,
- global,
- appContext
- }
- }
|