| 12345678910 |
- import { useAppProviderContext } from '/@/components/Application';
- import { computed, unref } from 'vue';
- export function useAppInject() {
- const values = useAppProviderContext();
- return {
- getIsMobile: computed(() => unref(values.isMobile)),
- };
- }
|