修改宽屏判断阈值

This commit is contained in:
2025-12-16 10:34:40 +08:00
parent 92d87347d0
commit 33f1d0a8ab

View File

@@ -156,7 +156,7 @@ const useScreenStore = defineStore('screen', () => {
const isWideScreen = computed(() => {
return screenWidth.value >= 1080;
return screenWidth.value >= 900;
});