diff --git a/examples/docs/en-US/message.md b/examples/docs/en-US/message.md
index 1d9149a30..9e2879f93 100644
--- a/examples/docs/en-US/message.md
+++ b/examples/docs/en-US/message.md
@@ -5,6 +5,16 @@
this.$message('This is a message.');
},
+ openVn() {
+ const h = this.$createElement;
+ this.$message({
+ message: h('p', null, [
+ h('span', null, 'Message can be '),
+ h('i', { style: 'color: teal' }, 'VNode')
+ ])
+ });
+ },
+
open2() {
this.$message({
message: 'Congrats, this is a success message.',
@@ -65,11 +75,12 @@ Used to show feedback after an activity. The difference with Notification is tha
Displays at the top, and disappears after 3 seconds.
-:::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 has registered a `$message` method for invoking. Message can take a string as parameter, and it will be shown as the main body.
+:::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 has registered a `$message` method for invoking. Message can take a string or VNode as parameter, and it will be shown as the main body.
```html
Show message
+ VNode