派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-01-05 8f015e4bfcd64305be602c4343abe2585e2d47da
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
<template>
  <div id="app" ref="app">
    <router-view/>
  </div>
</template>
 
<script>
 
export default {
  name: 'App',
  mounted () {
  }
}
</script>
 
<style>
html, body, #app{
  color: #2c3e50;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
</style>