yupan
2022-05-30 a53b68e774c2f8d70c0db8c8be91e38a9e76e1dc
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>