riku
2024-10-18 0906c54770971020cf2d243d06d57a2f6fbbc18c
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>