create-iking-admin
Version:
金合技术中台脚手架
19 lines (16 loc) • 427 B
text/typescript
/*
* @Author: wfl
* @LastEditors: wfl
* @description:
* @updateInfo:
* @Date: 2022-08-30 11:23:48
* @LastEditTime: 2022-10-24 10:26:07
*/
import { useAppProviderContext } from '@/global/components/Application';
import { computed, unref } from 'vue';
export function useAppInject() {
const values = useAppProviderContext();
return {
getIsMobile: computed(() => unref(values.isMobile)),
};
}