25 lines
483 B
Vue
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>
|