6 lines
144 B
JavaScript
Raw Normal View History

2025-01-25 02:48:00 +00:00
import { getCurrentInstance } from 'vue';
export const useApp = () => {
return getCurrentInstance().appContext?.config?.globalProperties;
};