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 number Diff line number Diff 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 Down Expand 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">
<slot />
</div>
</div>
Expand Down
Loading