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

Dialog

\n

Intro

\n

A modal box pops up on the page, which is often used for message prompts, message confirmation, or to complete specific interactive operations in the current page. It supports two methods: component call and function call.

\n

Install

\n

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

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

Function Call

\n

Vant provides some utility functions that can quickly evoke global Dialog components.

\n

For example, calling the showDialog function will render a Dialog directly in the page.

\n
import { showDialog } from 'vant';\n\nshowDialog({ message: 'Alert' });\n
\n

Usage

\n

Alert dialog

\n

Used to prompt for some messages, only including one confirm button by default.

\n
import { showDialog } from 'vant';\n\nshowDialog({\n  title: 'Title',\n  message: 'The code is written for people to see and can be run on a machine.',\n}).then(() => {\n  // on close\n});\n\nshowDialog({\n  message:\n    'Life is far more than just spinning and being busy to the limit, and human experiences are much broader and richer than this.',\n}).then(() => {\n  // on close\n});\n
\n

Confirm dialog

\n

Used to confirm some messages, including a confirm button and a cancel button by default.

\n
import { showConfirmDialog } from 'vant';\n\nshowConfirmDialog({\n  title: 'Title',\n  message:\n    'If the solution is ugly, then there must be a better solution, but it has not been discovered yet.',\n})\n  .then(() => {\n    // on confirm\n  })\n  .catch(() => {\n    // on cancel\n  });\n
\n

Round Button Style

\n

Setting the theme option to round-button will display the Dialog with a rounded button style.

\n
import { showDialog } from 'vant';\n\nshowDialog({\n  title: 'Title',\n  message: 'The code is written for people to see and can be run on a machine.',\n  theme: 'round-button',\n}).then(() => {\n  // on close\n});\n\nshowDialog({\n  message:\n    'Life is far more than just spinning and being busy to the limit, and human experiences are much broader and richer than this.',\n  theme: 'round-button',\n}).then(() => {\n  // on close\n});\n
\n

Async Close

\n

You can pass a callback function through the beforeClose option to perform specific operations before closing the Dialog.

\n
import { showConfirmDialog } from 'vant';\n\nconst beforeClose = (action) =>\n  new Promise((resolve) => {\n    setTimeout(() => {\n      // action !== 'confirm'  Interception cancellation operation\n      resolve(action === 'confirm');\n    }, 1000);\n  });\n\nshowConfirmDialog({\n  title: 'Title',\n  message:\n    'If the solution is ugly, then there must be a better solution, but it has not been discovered yet.',\n  beforeClose,\n});\n
\n

Use Dialog Component

\n

If you need to embed components or other custom content within a Dialog, you can directly use the Dialog component and customize it using the default slot. Before using it, you need to register the component using app.use or other methods.

\n
<van-dialog v-model:show="show" title="Title" show-cancel-button>\n  <img src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-3.jpeg" />\n</van-dialog>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    return { show };\n  },\n};\n
\n

API

\n

Methods

\n

Vant exports following Dialog utility functions:

\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
NameDescriptionAttributeReturn value
showDialogDisplay a message prompt dialog with a default confirm buttonoptions: DialogOptionsPromise<void>
showConfirmDialogDisplay a message confirmation dialog with default confirm and cancel buttonsoptions: DialogOptionsPromise<void>
closeDialogClose the currently displayed dialog-void
setDialogDefaultOptionsModify the default configuration that affects all showDialog callsoptions: DialogOptionsvoid
resetDialogDefaultOptionsReset the default configuration that affects all showDialog calls-void
\n

DialogOptions

\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\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
titleTitlestring-
widthDialog widthnumber | string320px
messageMessagestring | () => JSX.ELement-
messageAlignMessage text align, can be set to left rightstringcenter
themeTheme style, can be set to round-buttonstringdefault
classNameCustom classNamestring | Array | object-
showConfirmButtonWhether to show confirm buttonbooleantrue
showCancelButtonWhether to show cancel buttonbooleanfalse
cancelButtonTextCancel button textstringCancel
cancelButtonColorCancel button colorstringblack
cancelButtonDisabledWhether to disable cancel buttonbooleanfalse
confirmButtonTextConfirm button textstringConfirm
confirmButtonColorConfirm button colorstring#ee0a24
confirmButtonDisabledWhether to disable confirm buttonbooleanfalse
overlayWhether to show overlaybooleantrue
overlayClassCustom overlay classstring | Array | object-
overlayStyleCustom overlay styleobject-
closeOnPopstateWhether to close when popstatebooleantrue
closeOnClickOverlayWhether to close when overlay is clickedbooleanfalse
lockScrollWhether to lock body scrollbooleantrue
allowHtmlWhether to allow HTML rendering in messagebooleanfalse
beforeCloseCallback function before close(action: string) => boolean | Promise<boolean>-
transitionTransition, equivalent to name prop of transitionstring-
teleportSpecifies a target element where Dialog will be mountedstring | Elementbody
\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\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 dialogboolean-
titleTitlestring-
widthWidthnumber | string320px
messageMessagestring | () => JSX.ELement-
message-alignMessage align, can be set to left right justifystringcenter
themeTheme style, can be set to round-buttonstringdefault
show-confirm-buttonWhether to show confirm buttonbooleantrue
show-cancel-buttonWhether to show cancel buttonbooleanfalse
cancel-button-textCancel button textstringCancel
cancel-button-colorCancel button colorstringblack
cancel-button-disabledWhether to disable cancel buttonbooleanfalse
confirm-button-textConfirm button textstringConfirm
confirm-button-colorConfirm button colorstring#ee0a24
confirm-button-disabledWhether to disable confirm buttonbooleanfalse
z-indexSet the z-index to a fixed valuenumber | string2000+
overlayWhether to show overlaybooleantrue
overlay-classCustom overlay classstring-
overlay-styleCustom overlay styleobject-
close-on-popstateWhether to close when popstatebooleantrue
close-on-click-overlayWhether to close when overlay is clickedbooleanfalse
lazy-renderWhether to lazy render util appearedbooleantrue
lock-scrollWhether to lock background scrollbooleantrue
allow-htmlWhether to allow HTML rendering in messagebooleanfalse
before-closeCallback function before close(action: string) => boolean | Promise<boolean>-
transitionTransition, equivalent to name prop of transitionstring-
teleportSpecifies a target element where Dialog will be mountedstring | Element-
\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
EventDescriptionParameters
confirmEmitted when the confirm button is clicked-
cancelEmitted when the cancel button is clicked-
openEmitted when opening Dialog-
closeEmitted when closing Dialog-
openedEmitted when Dialog is opened-
closedEmitted when Dialog is closed-
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultCustom message
titleCustom title
footerCustom footer
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  DialogProps,\n  DialogTheme,\n  DialogMessage,\n  DialogOptions,\n  DialogMessageAlign,\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\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
NameDefault ValueDescription
--van-dialog-width320px-
--van-dialog-small-screen-width90%-
--van-dialog-font-sizevar(--van-font-size-lg)-
--van-dialog-transitionvar(--van-duration-base)-
--van-dialog-radius16px-
--van-dialog-backgroundvar(--van-background-2)-
--van-dialog-header-font-weightvar(--van-font-bold)-
--van-dialog-header-line-height24px-
--van-dialog-header-padding-top26px-
--van-dialog-header-isolated-paddingvar(--van-padding-lg) 0-
--van-dialog-message-paddingvar(--van-padding-lg)-
--van-dialog-message-font-sizevar(--van-font-size-md)-
--van-dialog-message-line-heightvar(--van-line-height-md)-
--van-dialog-message-max-height60vh-
--van-dialog-has-title-message-text-colorvar(--van-gray-7)-
--van-dialog-has-title-message-padding-topvar(--van-padding-xs)-
--van-dialog-button-height48px-
--van-dialog-round-button-height36px-
--van-dialog-confirm-button-text-colorvar(--van-primary-color)-
\n
'},null,8,d))}}}]);