Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,6 +11,10 @@ type OverlayAnchor = 'center' | 'top-left' | 'top-center' | 'top-right'
type OverlayPane = 'mapPane' | 'overlayLayer' | 'markerLayer'
| 'overlayMouseTarget' | 'floatPane'

defineOptions({
inheritAttrs: false,
})

const props = withDefaults(defineProps<{
/**
* Geographic position for the overlay. Falls back to parent marker position if omitted.
Expand DownExpand Up@@ -304,7 +308,7 @@ defineExpose({ overlay, dataState })

<template>
<div style="display: none;">
<div ref="overlay-content" :data-state="dataState">
<div ref="overlay-content" :data-state="dataState" v-bind="$attrs">
Comment thread
coderabbitai[bot] marked this conversation as resolved.
<slot />
</div>
</div>
Expand Down
Loading