18 lines
238 B
Vue
18 lines
238 B
Vue
<script setup>
|
|
import GdMap from "@/components/GdMap/index.vue"
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mapWrapper">
|
|
<gd-map />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.mapWrapper {
|
|
margin-top: 4vw;
|
|
height: 40vh;
|
|
}
|
|
</style>
|