- <script setup lang="ts">
- import { Tooltip } from "ant-design-vue";
- defineProps<{ local: Local }>();
- </script>
- <template>
- <div
- class="absolute p-3"
- :style="{ top: local.y + 'px', left: local.x + 'px' }"
- >
- <Tooltip :title="local.name" :open="true" />
- </div>
- </template>
- <style scoped></style>
|