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

Notify

\n

Intro

\n

The display message prompt is at the top of the page, and 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 { Notify } from 'vant';\n\nconst app = createApp();\napp.use(Notify);\n
\n

Function Call

\n

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

\n

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

\n
import { showNotify } from 'vant';\n\nshowNotify('Notify Message');\n
\n

Usage

\n

Basic Usage

\n
import { showNotify, closeNotify } from 'vant';\n\n// auto close after 3s\nshowNotify('Message');\n\n// manually close\ncloseNotify();\n
\n

Notify Type

\n
import { showNotify } from 'vant';\n\nshowNotify({ type: 'primary', message: 'Notify Message' });\nshowNotify({ type: 'success', message: 'Notify Message' });\nshowNotify({ type: 'danger', message: 'Notify Message' });\nshowNotify({ type: 'warning', message: 'Notify Message' });\n
\n

Custom Notify

\n
import { showNotify } from 'vant';\n\nshowNotify({\n  message: 'Custom Color',\n  color: '#ad0000',\n  background: '#ffe1e1',\n});\n\nshowNotify({\n  message: 'Custom Position',\n  position: 'bottom',\n});\n\nshowNotify({\n  message: 'Custom Duration',\n  duration: 1000,\n});\n
\n

Use Notify Component

\n
<van-button type="primary" text="Use Notify Component" @click="showNotify" />\n<van-notify v-model:show="show" type="success">\n  <van-icon name="bell" style="margin-right: 4px;" />\n  <span>Content</span>\n</van-notify>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const show = ref(false);\n\n    const showNotify = () => {\n      show.value = true;\n      setTimeout(() => {\n        show.value = false;\n      }, 2000);\n    };\n\n    return {\n      show,\n      showNotify,\n    };\n  },\n};\n
\n

API

\n

Methods

\n

Vant exports following Notify 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
MethodsDescriptionAttributeReturn value
showNotifyDisplay Notify at the top of the pageNotifyOptions | stringNotify instance
closeNotifyClose the currently displayed Notify-void
setNotifyDefaultOptionsModify the default configuration, affecting all showNotify callsNotifyOptionsvoid
resetNotifyDefaultOptionsReset the default configuration, affecting all showNotify calls-void
\n

NotifyOptions

\n

When calling the showNotify and other related methods, the following options are supported:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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
typeCan be set to primary success warningNotifyTypedanger
messageMessagestring-
durationDuration(ms), won\'t disappear if value is 0number | string3000
z-indexSet the z-index to a fixed valuenumber | string2000+
positionPosition, can be set to bottomNotifyPositiontop
colorMessage colorstringwhite
backgroundBackground colorstring-
classNameCustom classNamestring | Array | object-
lockScrollWhether to lock background scrollbooleanfalse
teleportSpecifies a target element where Notify will be mountedstring | Element-
onClickCallback function after click(event: MouseEvent) => void-
onOpenedCallback function after opened() => void-
onCloseCallback function after close() => void-
\n

Props

\n

When using Notify as a component, the following props are supported:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 notifybooleanfalse
typeCan be set to primary success warningNotifyTypedanger
messageMessagestring-
z-indexSet the z-index to a fixed valuenumber | string2000+
positionPosition, can be set to bottomNotifyPositiontop
colorMessage colorstringwhite
backgroundBackground colorstring-
class-nameCustom classNamestring | Array | object-
lock-scrollWhether to lock background scrollbooleanfalse
teleportSpecifies a target element where Notify will be mountedstring | Element-
\n

Events

\n

When using Notify as a component, the following events are supported:

\n\n\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
clickCallback function after clickevent: MouseEvent
closeCallback function after close-
openedCallback function after opened-
\n

Slots

\n

When using Notify as a component, the following slots are supported:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultCustom content
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  NotifyType,\n  NotifyProps,\n  NotifyOptions,\n  NotifyPosition,\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
NameDefault ValueDescription
--van-notify-text-colorvar(--van-white)-
--van-notify-paddingvar(--van-padding-xs) var(--van-padding-md)-
--van-notify-font-sizevar(--van-font-size-md)-
--van-notify-line-heightvar(--van-line-height-md)-
--van-notify-primary-backgroundvar(--van-primary-color)-
--van-notify-success-backgroundvar(--van-success-color)-
--van-notify-danger-backgroundvar(--van-danger-color)-
--van-notify-warning-backgroundvar(--van-warning-color)-
\n
'},null,8,e))}}}]);