Ben Lin
2024-05-04 60716513758d24159223fdd5962b252b00565bc2
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)),
  };
}