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