改进
All checks were successful
Build / build (push) Successful in 5m23s

This commit is contained in:
Twilight 2024-09-15 21:38:05 +08:00
parent 50e3030db5
commit 3bf02d46ce

View File

@ -137,9 +137,9 @@ const isMobile = useIsMobile();
const showDrawer = ref(false);
const width = computed(() => {
if (isMobile.value) {
return window.innerWidth;
// return window.innerWidth;
} else {
return window.innerWidth * 0.5;
return window.innerWidth * 0.4;
}
})