/*! 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:'
The display message prompt is at the top of the page, and 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 { Notify } from 'vant';\n\nconst app = createApp();\napp.use(Notify);\n
\nVant provides some utility functions that can quickly evoke global Notify
components.
For example, calling the showNotify
function will render a Dialog directly in the page.
import { showNotify } from 'vant';\n\nshowNotify('Notify Message');\n
\nimport { showNotify, closeNotify } from 'vant';\n\n// auto close after 3s\nshowNotify('Message');\n\n// manually close\ncloseNotify();\n
\nimport { 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
\nimport { 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<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
\nimport { 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
\nVant exports following Notify utility functions:
\nMethods | \nDescription | \nAttribute | \nReturn value | \n
---|---|---|---|
showNotify | \nDisplay Notify at the top of the page | \nNotifyOptions | string | \nNotify instance | \n
closeNotify | \nClose the currently displayed Notify | \n- | \nvoid | \n
setNotifyDefaultOptions | \nModify the default configuration, affecting all showNotify calls | \nNotifyOptions | \nvoid | \n
resetNotifyDefaultOptions | \nReset the default configuration, affecting all showNotify calls | \n- | \nvoid | \n
When calling the showNotify
and other related methods, the following options are supported:
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
type | \nCan be set to primary success warning | \nNotifyType | \ndanger | \n
message | \nMessage | \nstring | \n- | \n
duration | \nDuration(ms), won\'t disappear if value is 0 | \nnumber | string | \n3000 | \n
z-index | \nSet the z-index to a fixed value | \nnumber | string | \n2000+ | \n
position | \nPosition, can be set to bottom | \nNotifyPosition | \ntop | \n
color | \nMessage color | \nstring | \nwhite | \n
background | \nBackground color | \nstring | \n- | \n
className | \nCustom className | \nstring | Array | object | \n- | \n
lockScroll | \nWhether to lock background scroll | \nboolean | \nfalse | \n
teleport | \nSpecifies a target element where Notify will be mounted | \nstring | Element | \n- | \n
onClick | \nCallback function after click | \n(event: MouseEvent) => void | \n- | \n
onOpened | \nCallback function after opened | \n() => void | \n- | \n
onClose | \nCallback function after close | \n() => void | \n- | \n
When using Notify
as a component, the following props are supported:
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model:show | \nWhether to show notify | \nboolean | \nfalse | \n
type | \nCan be set to primary success warning | \nNotifyType | \ndanger | \n
message | \nMessage | \nstring | \n- | \n
z-index | \nSet the z-index to a fixed value | \nnumber | string | \n2000+ | \n
position | \nPosition, can be set to bottom | \nNotifyPosition | \ntop | \n
color | \nMessage color | \nstring | \nwhite | \n
background | \nBackground color | \nstring | \n- | \n
class-name | \nCustom className | \nstring | Array | object | \n- | \n
lock-scroll | \nWhether to lock background scroll | \nboolean | \nfalse | \n
teleport | \nSpecifies a target element where Notify will be mounted | \nstring | Element | \n- | \n
When using Notify
as a component, the following events are supported:
Event | \nDescription | \nParameters | \n
---|---|---|
click | \nCallback function after click | \nevent: MouseEvent | \n
close | \nCallback function after close | \n- | \n
opened | \nCallback function after opened | \n- | \n
When using Notify
as a component, the following slots are supported:
Name | \nDescription | \n
---|---|
default | \nCustom content | \n
The component exports the following type definitions:
\nimport type {\n NotifyType,\n NotifyProps,\n NotifyOptions,\n NotifyPosition,\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-notify-text-color | \nvar(--van-white) | \n- | \n
--van-notify-padding | \nvar(--van-padding-xs) var(--van-padding-md) | \n- | \n
--van-notify-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-notify-line-height | \nvar(--van-line-height-md) | \n- | \n
--van-notify-primary-background | \nvar(--van-primary-color) | \n- | \n
--van-notify-success-background | \nvar(--van-success-color) | \n- | \n
--van-notify-danger-background | \nvar(--van-danger-color) | \n- | \n
--van-notify-warning-background | \nvar(--van-warning-color) | \n- | \n