仪表盘
版本库
文件存储
活动
搜索
登录
main
/
mom-pro2-before
中小pro2前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
银川 1.仓储物流添加库存事务流水页面
gaoluyang
8 天以前
0904d14fb18944b5cc209b44e48d25c8f5aed928
[mom-pro2-before.git]
/
src
/
packages
/
@core
/
composables
/
src
/
use-is-mobile.ts
1
2
3
4
5
6
7
import { breakpointsTailwind, useBreakpoints } from '@vueuse/core';
export function useIsMobile() {
const breakpoints = useBreakpoints(breakpointsTailwind);
const isMobile = breakpoints.smaller('md');
return { isMobile };
}