chen_xi
2022-05-30 83e7d9b7d16c6378256e707e698e5e410841d5de
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
<template>
  <div id="app">
    <Map></Map>
  </div>
</template>
 
<script>
import Map from './components/Map'
export default {
  name: 'App',
  components: {
    Map
  },
  methods: {
  }
}
</script>
 
<style>
html,
body,
#app {
  height: 100%;
}
.noneData{
 
}
</style>