/*! 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:'
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.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Dialog } from 'vant';\n\nconst app = createApp();\napp.use(Dialog);\n
\nVant provides some utility functions that can quickly evoke global Dialog
components.
For example, calling the showDialog
function will render a Dialog directly in the page.
import { showDialog } from 'vant';\n\nshowDialog({ message: 'Alert' });\n
\nUsed to prompt for some messages, only including one confirm button by default.
\nimport { 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
\nUsed to confirm some messages, including a confirm button and a cancel button by default.
\nimport { 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
\nSetting the theme
option to round-button
will display the Dialog with a rounded button style.
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
\nYou can pass a callback function through the beforeClose
option to perform specific operations before closing the Dialog.
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
\nIf 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.
<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
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const show = ref(false);\n return { show };\n },\n};\n
\nVant exports following Dialog utility functions:
\nName | \nDescription | \nAttribute | \nReturn value | \n
---|---|---|---|
showDialog | \nDisplay a message prompt dialog with a default confirm button | \noptions: DialogOptions | \nPromise<void> | \n
showConfirmDialog | \nDisplay a message confirmation dialog with default confirm and cancel buttons | \noptions: DialogOptions | \nPromise<void> | \n
closeDialog | \nClose the currently displayed dialog | \n- | \nvoid | \n
setDialogDefaultOptions | \nModify the default configuration that affects all showDialog calls | \noptions: DialogOptions | \nvoid | \n
resetDialogDefaultOptions | \nReset the default configuration that affects all showDialog calls | \n- | \nvoid | \n
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
title | \nTitle | \nstring | \n- | \n
width | \nDialog width | \nnumber | string | \n320px | \n
message | \nMessage | \nstring | () => JSX.ELement | \n- | \n
messageAlign | \nMessage text align, can be set to left right | \nstring | \ncenter | \n
theme | \nTheme style, can be set to round-button | \nstring | \ndefault | \n
className | \nCustom className | \nstring | Array | object | \n- | \n
showConfirmButton | \nWhether to show confirm button | \nboolean | \ntrue | \n
showCancelButton | \nWhether to show cancel button | \nboolean | \nfalse | \n
cancelButtonText | \nCancel button text | \nstring | \nCancel | \n
cancelButtonColor | \nCancel button color | \nstring | \nblack | \n
cancelButtonDisabled | \nWhether to disable cancel button | \nboolean | \nfalse | \n
confirmButtonText | \nConfirm button text | \nstring | \nConfirm | \n
confirmButtonColor | \nConfirm button color | \nstring | \n#ee0a24 | \n
confirmButtonDisabled | \nWhether to disable confirm button | \nboolean | \nfalse | \n
overlay | \nWhether to show overlay | \nboolean | \ntrue | \n
overlayClass | \nCustom overlay class | \nstring | Array | object | \n- | \n
overlayStyle | \nCustom overlay style | \nobject | \n- | \n
closeOnPopstate | \nWhether to close when popstate | \nboolean | \ntrue | \n
closeOnClickOverlay | \nWhether to close when overlay is clicked | \nboolean | \nfalse | \n
lockScroll | \nWhether to lock body scroll | \nboolean | \ntrue | \n
allowHtml | \nWhether to allow HTML rendering in message | \nboolean | \nfalse | \n
beforeClose | \nCallback function before close | \n(action: string) => boolean | Promise<boolean> | \n- | \n
transition | \nTransition, equivalent to name prop of transition | \nstring | \n- | \n
teleport | \nSpecifies a target element where Dialog will be mounted | \nstring | Element | \nbody | \n
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model:show | \nWhether to show dialog | \nboolean | \n- | \n
title | \nTitle | \nstring | \n- | \n
width | \nWidth | \nnumber | string | \n320px | \n
message | \nMessage | \nstring | () => JSX.ELement | \n- | \n
message-align | \nMessage align, can be set to left right justify | \nstring | \ncenter | \n
theme | \nTheme style, can be set to round-button | \nstring | \ndefault | \n
show-confirm-button | \nWhether to show confirm button | \nboolean | \ntrue | \n
show-cancel-button | \nWhether to show cancel button | \nboolean | \nfalse | \n
cancel-button-text | \nCancel button text | \nstring | \nCancel | \n
cancel-button-color | \nCancel button color | \nstring | \nblack | \n
cancel-button-disabled | \nWhether to disable cancel button | \nboolean | \nfalse | \n
confirm-button-text | \nConfirm button text | \nstring | \nConfirm | \n
confirm-button-color | \nConfirm button color | \nstring | \n#ee0a24 | \n
confirm-button-disabled | \nWhether to disable confirm button | \nboolean | \nfalse | \n
z-index | \nSet the z-index to a fixed value | \nnumber | string | \n2000+ | \n
overlay | \nWhether to show overlay | \nboolean | \ntrue | \n
overlay-class | \nCustom overlay class | \nstring | \n- | \n
overlay-style | \nCustom overlay style | \nobject | \n- | \n
close-on-popstate | \nWhether to close when popstate | \nboolean | \ntrue | \n
close-on-click-overlay | \nWhether to close when overlay is clicked | \nboolean | \nfalse | \n
lazy-render | \nWhether to lazy render util appeared | \nboolean | \ntrue | \n
lock-scroll | \nWhether to lock background scroll | \nboolean | \ntrue | \n
allow-html | \nWhether to allow HTML rendering in message | \nboolean | \nfalse | \n
before-close | \nCallback function before close | \n(action: string) => boolean | Promise<boolean> | \n- | \n
transition | \nTransition, equivalent to name prop of transition | \nstring | \n- | \n
teleport | \nSpecifies a target element where Dialog will be mounted | \nstring | Element | \n- | \n
Event | \nDescription | \nParameters | \n
---|---|---|
confirm | \nEmitted when the confirm button is clicked | \n- | \n
cancel | \nEmitted when the cancel button is clicked | \n- | \n
open | \nEmitted when opening Dialog | \n- | \n
close | \nEmitted when closing Dialog | \n- | \n
opened | \nEmitted when Dialog is opened | \n- | \n
closed | \nEmitted when Dialog is closed | \n- | \n
Name | \nDescription | \n
---|---|
default | \nCustom message | \n
title | \nCustom title | \n
footer | \nCustom footer | \n
The component exports the following type definitions:
\nimport type {\n DialogProps,\n DialogTheme,\n DialogMessage,\n DialogOptions,\n DialogMessageAlign,\n} from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-dialog-width | \n320px | \n- | \n
--van-dialog-small-screen-width | \n90% | \n- | \n
--van-dialog-font-size | \nvar(--van-font-size-lg) | \n- | \n
--van-dialog-transition | \nvar(--van-duration-base) | \n- | \n
--van-dialog-radius | \n16px | \n- | \n
--van-dialog-background | \nvar(--van-background-2) | \n- | \n
--van-dialog-header-font-weight | \nvar(--van-font-bold) | \n- | \n
--van-dialog-header-line-height | \n24px | \n- | \n
--van-dialog-header-padding-top | \n26px | \n- | \n
--van-dialog-header-isolated-padding | \nvar(--van-padding-lg) 0 | \n- | \n
--van-dialog-message-padding | \nvar(--van-padding-lg) | \n- | \n
--van-dialog-message-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-dialog-message-line-height | \nvar(--van-line-height-md) | \n- | \n
--van-dialog-message-max-height | \n60vh | \n- | \n
--van-dialog-has-title-message-text-color | \nvar(--van-gray-7) | \n- | \n
--van-dialog-has-title-message-padding-top | \nvar(--van-padding-xs) | \n- | \n
--van-dialog-button-height | \n48px | \n- | \n
--van-dialog-round-button-height | \n36px | \n- | \n
--van-dialog-confirm-button-text-color | \nvar(--van-primary-color) | \n- | \n