Files
workGit/数字孪生可视化大屏vue源码/BeiDaFangZhengVue2TV/src/App.vue
2026-05-23 14:11:26 +08:00

25 lines
483 B
Vue

<template>
<div id="app">
<keep-alive>
<router-view v-if="this.$route.meta.keepAlive"/>
</keep-alive>
<router-view v-if="!this.$route.meta.keepAlive"/>
</div>
</template>
<style>
#app {
font-family: MiSans Bold, serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
/*font-family: Microsoft YaHei!important;*/
}
.el-dialog__wrapper {
pointer-events: none;
}
.el-dialog {
pointer-events: auto;
}
</style>