/*! For license information please see 5080.3683e110.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5080"],{56175:function(s,n,t){"use strict";t.r(n);var a=t("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Popup

\n

Intro

\n

Used to display pop-up windows, information prompts, etc., and supports multiple pop-up layers to display.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Popup } from 'vant';\n\nconst app = createApp();\napp.use(Popup);\n
\n

Usage

\n

Basic Usage

\n
<van-cell title="Show Popup" is-link @click="showPopup" />\n<van-popup v-model:show="show" :style="{ padding: '64px' }">Content</van-popup>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    const showPopup = () => {\n      show.value = true;\n    };\n    return {\n      show,\n      showPopup,\n    };\n  },\n};\n
\n

Position

\n

Use position prop to set Popup display position.

\n

The default position is center, it can be set to top, bottom, left, right.

\n\n
<!-- top popup -->\n<van-popup v-model:show="showTop" position="top" :style="{ height: '30%' }" />\n\n<!-- bottom popup -->\n<van-popup\n  v-model:show="showBottom"\n  position="bottom"\n  :style="{ height: '30%' }"\n/>\n\n<!-- left popup -->\n<van-popup\n  v-model:show="showLeft"\n  position="left"\n  :style="{ width: '30%', height: '100%' }"\n/>\n\n<!-- Popup on the right -->\n<van-popup\n  v-model:show="showRight"\n  position="right"\n  :style="{ width: '30%', height: '100%' }"\n/>\n
\n

Close Icon

\n
<van-popup\n  v-model:show="show"\n  closeable\n  position="bottom"\n  :style="{ height: '30%' }"\n/>\n<!-- Custom Icon -->\n<van-popup\n  v-model:show="show"\n  closeable\n  close-icon="close"\n  position="bottom"\n  :style="{ height: '30%' }"\n/>\n<!-- Icon Position -->\n<van-popup\n  v-model:show="show"\n  closeable\n  close-icon-position="top-left"\n  position="bottom"\n  :style="{ height: '30%' }"\n/>\n
\n

Round Corner

\n

After setting the round prop, the Popup will add different rounded corner styles according to the position.

\n
<!-- Round Popup (center) -->\n<van-popup v-model:show="showCenter" round :style="{ padding: '64px' }" />\n\n<!-- Round Popup (bottom) -->\n<van-popup\n  v-model:show="showBottom"\n  round\n  position="bottom"\n  :style="{ height: '30%' }"\n/>\n
\n

Listen To Click Events

\n

Popup supports following events:

\n\n
<van-cell title="Listen Click Events" is-link @click="show = true" />\n<van-popup\n  v-model:show="show"\n  position="bottom"\n  :style="{ height: '30%' }"\n  closeable\n  @click-overlay="onClickOverlay"\n  @click-close-icon="onClickCloseIcon"\n/>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    const onClickOverlay = () => {\n      showToast('click-overlay');\n    };\n    const onClickCloseIcon = () => {\n      showToast('click-close-icon');\n    };\n    return {\n      show,\n      onClickOverlay,\n      onClickCloseIcon,\n    };\n  },\n};\n
\n

Listen to Display Events

\n

When the Popup is opened or closed, the following events will be emitted:

\n\n
<van-cell title="Listen to display events" is-link @click="show = true" />\n<van-popup\n  v-model:show="show"\n  position="bottom"\n  :style="{ height: '30%' }"\n  @open="showToast('open')"\n  @opened="showToast('opened')"\n  @close="showToast('close')"\n  @closed="showToast('closed')"\n/>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    return {\n      show,\n      showToast,\n    };\n  },\n};\n
\n

Get Container

\n

Use teleport prop to specify mount location.

\n
<!-- teleport to body -->\n<van-popup v-model:show="show" teleport="body" />\n\n<!-- teleport to #app -->\n<van-popup v-model:show="show" teleport="#app" />\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-model:showWhether to show popupbooleanfalse
overlayWhether to show overlaybooleantrue
positionCan be set to top bottom right leftstringcenter
overlay-classCustom overlay classstring | Array | object-
overlay-styleCustom overlay styleobject-
durationTransition duration, unit secondnumber | string0.3
z-indexSet the z-index to a fixed valuenumber | string2000+
roundWhether to show round cornerbooleanfalse
lock-scrollWhether to lock background scrollbooleantrue
lazy-renderWhether to lazy render util appearedbooleantrue
close-on-popstateWhether to close when popstatebooleanfalse
close-on-click-overlayWhether to close when overlay is clickedbooleantrue
closeableWhether to show close iconbooleanfalse
close-iconClose icon namestringcross
close-icon-positionClose Icon Position, can be set to top-left bottom-left bottom-rightstringtop-right
before-closeCallback function before close(action: string) => boolean | Promise<boolean>-
icon-prefixIcon className prefixstringvan-icon
transitionTransition, equivalent to name prop of transitionstring-
transition-appearWhether to apply transition on initial renderbooleanfalse
teleportSpecifies a target element where Popup will be mountedstring | Element-
safe-area-inset-topWhether to enable top safe area adaptationbooleanfalse
safe-area-inset-bottomWhether to enable bottom safe area adaptationbooleanfalse
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
clickEmitted when Popup is clickedevent: MouseEvent
click-overlayEmitted when overlay is clickedevent: MouseEvent
click-close-iconEmitted when close icon is clickedevent: MouseEvent
openEmitted immediately when Popup is opened-
closeEmitted immediately when Popup is closed-
openedEmitted when Popup is opened and the animation ends-
closedEmitted when Popup is closed and the animation ends-
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultContent of Popup
overlay-contentContent of Popup overlay
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  PopupProps,\n  PopupPosition,\n  PopupInstance,\n  PopupCloseIconPosition,\n} from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-popup-backgroundvar(--van-background-2)-
--van-popup-transitiontransform var(--van-duration-base)-
--van-popup-round-radius16px-
--van-popup-close-icon-size22px-
--van-popup-close-icon-colorvar(--van-gray-5)-
--van-popup-close-icon-margin16px-
--van-popup-close-icon-z-index1-
\n
'},null,8,e))}}}]);