fix(UI) main view h-screen has no effect on windows10
This commit is contained in:
parent
4f50883e8c
commit
8d52ff6690
|
@ -11,7 +11,6 @@ import {ControlEvent, ControlMsgType} from "@/api";
|
||||||
import {routeCtrlMsg, routeModuleServerMsg} from "@/router/msgRouter";
|
import {routeCtrlMsg, routeModuleServerMsg} from "@/router/msgRouter";
|
||||||
import {globalNotify} from "@/composables/notification";
|
import {globalNotify} from "@/composables/notification";
|
||||||
import {isDevMode} from "@/composables/buildMode";
|
import {isDevMode} from "@/composables/buildMode";
|
||||||
import {ElMessageBox} from "element-plus";
|
|
||||||
import {useSystemModule} from "@/composables/useSystemModule";
|
import {useSystemModule} from "@/composables/useSystemModule";
|
||||||
import {useDataFlowModule} from "@/composables/useDataFlowModule";
|
import {useDataFlowModule} from "@/composables/useDataFlowModule";
|
||||||
|
|
||||||
|
@ -61,10 +60,16 @@ onUnmounted(() => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col h-screen">
|
<div class="flex flex-col wt-h-100">
|
||||||
<header>
|
<header>
|
||||||
<nav-bar/>
|
<nav-bar/>
|
||||||
</header>
|
</header>
|
||||||
<RouterView/>
|
<RouterView/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.wt-h-100 {
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue