31 lines
420 B
Vue
31 lines
420 B
Vue
<template>
|
|
<div class="test">
|
|
<div class="map-container" id="map-container"></div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
mounted(){
|
|
const map = new AMap.Map("map-container", {
|
|
zoom: 12,
|
|
center: [116.397428, 39.90923],
|
|
});
|
|
},
|
|
methods:{
|
|
|
|
},
|
|
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
.map-container{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|