派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-03-17 e20d96c28a7e1a40a593a8011a2080ce80cd8bf0
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
<template>
  <div id="app" ref="app">
    <router-view/>
  </div>
</template>
 
<script>
 
export default {
  name: 'App',
  mounted () {
  }
}
</script>
 
<style lang="less">
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>