UNPKG

nk-cli

Version:

Initialize a vite app fast by NK-CLI

11 lines (8 loc) 258 B
import { useAppProviderContext } from '/@/components/Application'; import { computed, unref } from 'vue'; export function useAppInject() { const values = useAppProviderContext(); return { getIsMobile: computed(() => unref(values.isMobile)), }; }