YangYuGang
2025-03-08 1094c29e03ee0efc7121babda0532c8138aa801f
1
2
3
4
5
6
7
8
9
10
import { useAppProviderContext } from '@/components/Application';
import { computed, unref } from 'vue';
 
export function useAppInject() {
  const values = useAppProviderContext();
 
  return {
    getIsMobile: computed(() => unref(values.isMobile)),
  };
}