挂牌上锁程序开发
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.
 
 
 
 
 
 

14 lines
236 B

<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>