W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
消息窗口( Messager )提供不同樣式的消息窗口,如警示( alert )、確認( confirm )等。 消息窗口( Messager )都是異步的。用戶可以在與消息窗口交互后使用回調函數(shù)以完成一些動作。
名稱 | 數(shù)據類型 | 作用描述 | 默認值 |
---|---|---|---|
ok | string | 確定按鈕文本。 | Ok |
cancel | string | 取消按鈕文本。 | Cancel |
title | string | 消息標題。 | |
msg | string | 要在對話框中顯示的消息。 | |
icon | string | 要在對話框上顯示的圖標類。 |
名稱 | 參數(shù) | 返回值 | 作用描述 |
---|---|---|---|
alert | options | void | 顯示警告消息對話框。 |
confirm | options | void | 顯示確認消息對話框。 |
prompt | options | void | 顯示提示消息對話框。 |
alert
方法代碼實例:this.$messager.alert({
title: "Info",
icon: "info",
msg: "Here is a info message!"
});
confirm
方法代碼實例:this.$messager.confirm({
title: "Confirm",
msg: "Are you confirm this?",
result: r => {
if (r) {
alert("confirmed: " + r);
}
}
});
prompt
方法代碼實例:this.$messager.prompt({
title: "Prompt",
msg: "Please type something",
result: r => {
if (r) {
alert("you type: " + r);
}
}
});
注:
- 繼承: None 。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: