hcong
2024-11-20 546d0771b90a399347d886c13e314bb6e5f76938
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <div style="width: 70vw; height: 500px; background-color: aliceblue">
    <BaseMap></BaseMap>
  </div>
</template>
<script setup>
const props = defineProps({
  // 场景点位信息
  data: Array
});
</script>
<style scoped></style>