Files
element-plus/docs/en-US/component/message.md
知晓同丶 98041055b0 feat(components): [message] add placement option & method (#21747)
* feat(components): [message] add `placement` option & method

* fix: resolve test hanging issue caused by reactive circular dependency

* test: add test

* feat: add placement `top-left/top-right/bottom-left/bottom-right`

* refactor: split large normalizeOptions function

* docs: adjust description text

* chore: remove unused height expose

* refactor: simpify code

* style: opt-in center style & simplified animations

* style: replace :not(.center) with :is(.left,.right) for more explicit

* feat: add `placement` to `config-provider`

* fix: fix test warning when placement is undefined

* refactor: remove useless style & simpify types

* fix: avoid circular dependency

* chore: types related

* Update docs/examples/config-provider/message.vue

Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>

* Update packages/components/config-provider/__tests__/config-provider.test.tsx

Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>

* chore: make typecheck happy & format

* style: add top/bottom transition

* chore: format

---------

Co-authored-by: zhixiaotong <947803089@qq.com>
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
Co-authored-by: Dsaquel <291874700n@gmail.com>
2025-08-19 15:16:49 +00:00

7.6 KiB

title, lang
title lang
Message en-US

Message

Used to show feedback after an activity. The difference with Notification is that the latter is often used to show a system level passive notification.

Basic usage

Displays at the top by default, and disappears after 3 seconds. You can control the position using the placement property.

:::demo The setup of Message is very similar to notification, so parts of the options won't be explained in detail here. You can check the options table below combined with notification doc to understand it. Element Plus has registered a $message method for invoking. Message can take a string or a VNode as parameter, and it will be shown as the main body.

message/basic

:::

Types

Used to show the feedback of Success, Warning, Message and Error activities.

:::demo When you need more customizations, Message component can also take an object as parameter. For example, setting value of type can define different types, and its default is info. In such cases the main body is passed in as the value of message. Also, we have registered methods for different types, so you can directly call it without passing a type like open4. primary has been added in ^(2.9.11).

message/different-types

:::

Plain ^(2.6.3)

Set plain to have a plain background.

:::demo

message/plain

:::

Closable

A close button can be added.

:::demo A default Message cannot be closed manually. If you need a closable message, you can set showClose field. Besides, same as notification, message has a controllable duration. Default duration is 3000 ms, and it won't disappear when set to 0.

message/closable

:::

Use HTML string

message supports HTML string.

:::demo Set dangerouslyUseHTMLString to true and message will be treated as an HTML string.

message/raw-html

:::

:::warning

Although message property supports HTML strings, dynamically rendering arbitrary HTML on your website can be very dangerous because it can easily lead to XSS attacks. So when dangerouslyUseHTMLString is on, please make sure the content of message is trusted, and never assign message to user-provided content.

:::

Grouping

merge messages with the same content.

:::demo Set grouping to true and the same content of message will be merged.

message/grouping

:::

Placement ^(2.11.0)

Control the position where messages appear. Messages can be displayed at the top (default) or other placements of the viewport.

:::demo

message/placement

:::

Global method

Element Plus has added a global method $message for app.config.globalProperties. So in a vue instance you can call Message like what we did in this page.

Local import

import { ElMessage } from 'element-plus'

In this case you should call ElMessage(options). We have also registered methods for different types, e.g. ElMessage.success(options). You can call ElMessage.closeAll() to manually close all the instances.

App context inheritance ^(2.0.3)

Now message accepts a context as second parameter of the message constructor which allows you to inject current app's context to message which allows you to inherit all the properties of the app.

You can use it like this:

:::tip

If you globally registered ElMessage component, it will automatically inherit your app context.

:::

import { getCurrentInstance } from 'vue'
import { ElMessage } from 'element-plus'

// in your setup method
const { appContext } = getCurrentInstance()!
ElMessage({}, appContext)

API

Options

Name Description Type Default
message message text ^[string] / ^[VNode] / ^[Function]() => VNode ''
type message type ^[enum]'primary' (2.9.11) | 'success' | 'warning' | 'info' | 'error' info
plain ^(2.6.3) whether message is plain ^[boolean] false
icon custom icon component, overrides type ^[string] / ^[Component]
dangerouslyUseHTMLString whether message is treated as HTML string ^[boolean] false
customClass custom class name for Message ^[string] ''
duration display duration, millisecond. If set to 0, it will not turn off automatically ^[number] 3000
showClose whether to show a close button ^[boolean] false
onClose callback function when closed with the message instance as the parameter ^[Function]() => void
offset set the distance to the viewport edge (top when placement is 'top', bottom when placement is 'bottom') ^[number] 16
placement ^(2.11.0) message placement position ^[enum]'top' | 'top-left' | 'top-right' | 'bottom' | 'bottom-left' | 'bottom-right' top
appendTo set the root element for the message, default to document.body ^[CSSSelector] / ^[HTMLElement]
grouping merge messages with the same content, type of VNode message is not supported ^[boolean] false
repeatNum The number of repetitions, similar to badge, is used as the initial number when used with grouping ^[number] 1

Methods

Message and this.$message returns the current Message instance. To manually close the instance, you can call close on it.

Name Description Type
close close the Message ^[Function]() => void