派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-03-14 d6e7f8eeda264d9fa2c1be6dab71780b5d550273
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
  <div id="app" ref="app">
    <router-view/>
  </div>
</template>
 
<script>
 
export default {
  name: 'App',
  mounted () {
  }
}
</script>
 
<style lang="less">
@import '@assets/css/map/_map-variable';
html, body, #app{
  color: @color;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body .el-scrollbar__wrap {
  overflow-x: hidden;
}
body{
  -ms-overflow-style: none;
  font-size: 12px;
}
 
</style>