Skip to content

VPopup

VPopup 控件用于在地图上显示弹窗。

将弹窗结合 VMarker 使用。

API

popupProps

属性名说明类型默认值
modelValue弹窗是否可见boolean必填
center弹窗的经纬度坐标object, array-
text弹窗的文本string-
html弹窗的 HTML 内容string-
closeButton显示关闭按钮booleanfalse
closeOnClick点击地图时关闭弹窗booleantrue
closeOnMove移动地图时关闭弹窗booleanfalse
focusAfterOpen打开弹窗后焦点booleanfalse
anchor锚点位置stringcenter
offset偏移量object,array,number-
className弹窗的 CSS 类名string-
maxWidth弹窗的最大宽度string240px
defaultOptions弹窗的配置项(覆盖同名属性object-

popupEmits

事件名说明回调参数
load弹窗加载完成后触发Function
update:modelValue弹窗可见性更新时触发Function
open弹窗打开时触发Function
close弹窗关闭时触发Function

popupSlots

插槽名说明
default自定义弹框的内容

Inject

hooks/symbol.ts
typescript
export const popupKey: InjectionKey<ShallowRef<Popup | undefined>> = Symbol('Popup')
hooks/usePopup.ts
ts
export function usePopup() {
  const popup = inject<Popup>(popupKey)
  if (!popup) {
    consola.warn('no popup provided')
  }
  return unref(popup)
}

类型定义

PopupLoadEvent

plugin/Popup/Popup.ts
typescript
export interface PopupLoadEvent {
  map: Map
  popup: Popup
}

PopupAnchor

plugin/Popup/Popup.ts
typescript
export type PopupAnchor =
  | 'center'
  | 'top'
  | 'bottom'
  | 'left'
  | 'right'
  | 'top-left'
  | 'top-right'
  | 'bottom-left'
  | 'bottom-right'

PopupOffset

plugin/Popup/Popup.ts
typescript
export type PopupOffset = number | PointLike | Partial<Record<PopupAnchor, PointLike>>

PopupEvents

plugin/Popup/Popup.ts
typescript
export interface PopupEvents {
  open: void
  close: void
}

基于 MIT 许可发布