Files
hossein-por-shop/frontend/composables/global/useRatio.ts
2025-04-08 23:00:27 +03:30

13 lines
264 B
TypeScript

import { useWindowSize } from "@vueuse/core";
export const useRatio = () => {
const isMobile = computed(() => {
const { width: windowWidth } = useWindowSize();
return windowWidth.value < 1024;
});
return {
isMobile,
};
};