2021-07-06 01:12:20 +08:00

25 lines
285 B
Vue

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