ShowPoint.vue 311 B

123456789101112131415
  1. <script setup lang="ts">
  2. import { Tooltip } from "ant-design-vue";
  3. defineProps<{ local: Local }>();
  4. </script>
  5. <template>
  6. <div
  7. class="absolute p-3"
  8. :style="{ top: local.y + 'px', left: local.x + 'px' }"
  9. >
  10. <Tooltip :title="local.name" :open="true" />
  11. </div>
  12. </template>
  13. <style scoped></style>