You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
245 B
16 lines
245 B
3 days ago
|
<template>
|
||
|
<div class="map-container"></div>
|
||
|
</template>
|
||
|
<script setup lang="ts">
|
||
|
import { ref } from 'vue'
|
||
|
const map = ref(null)
|
||
|
</script>
|
||
|
<style scoped>
|
||
|
.map-container {
|
||
|
min-width: 300px;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
</style>
|