Files
jg_app/src/pages/clockInPage/components/mapWrapper.vue

18 lines
238 B
Vue
Raw Normal View History

2026-04-10 17:10:36 +08:00
<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>