2021-04-14 16:44:58 +08:00

27 lines
286 B
Vue

<template>
<div class="map">
<Amap />
</div>
</template>
<script lang='ts'>
import { Amap } from "/@/components/Map";
export default {
components: {
Amap
},
setup(){
return{
}
},
}
</script>
<style scoped>
.map {
width: 100%;
height: 89vh;
}
</style>