You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< docs >
-- -
order : 5
title :
zh - CN : 更新消息内容
en - US : Update Message Content
-- -
# # zh - CN
可以通过唯一的 ` key ` 来更新内容 、 或者响应式数据 。
# # en - US
Update message content with unique ` key ` , or use reactive data .
< / docs >
< template >
< a -button type = "primary" @click ="openMessage" > Open the message box ( update by key ) < / a -button >
< br / >
< br / >
< a -button type = "primary" @click ="openMessage2" >
Open the message box ( update by reactive )
< / a -button >
< / template >
< script lang = "ts" setup >
import { message } from 'ant-design-vue' ;
import { ref } from 'vue' ;
const key = 'updatable' ;
const openMessage = ( ) => {
message . loading ( { content : 'Loading...' , key } ) ;
setTimeout ( ( ) => {
message . success ( { content : 'Loaded!' , key , duration : 2 } ) ;
} , 1000 ) ;
} ;
const content = ref ( 'Loading...' ) ;
const openMessage2 = ( ) => {
// content must use function
message . loading ( { content : ( ) => content . value } ) ;
setTimeout ( ( ) => {
content . value = 'Loaded!' ;
} , 1000 ) ;
} ;
< / script >