MessageBox 消息弹框

模拟系统的消息提示框而实现的一套模态对话框组件,用于消息提示、确认消息和提交内容。

TIP

从设计上来说,MessageBox 的作用是美化系统自带的 alertconfirmprompt,因此适合展示较为简单的内容。 如果需要弹出较为复杂的内容,请使用 Dialog。

消息提示

当用户进行操作时会被触发,该对话框中断用户操作,直到用户确认知晓后才可关闭。

调用$alert方法即可打开消息提示, 它模拟了系统的 alert,无法通过按下 ESC 或点击框外关闭。 此例中接收了两个参数,messagetitle。 值得一提的是,窗口被关闭后,它默认会返回一个Promise对象便于进行后续操作的处理。 若不确定浏览器是否支持Promise,可自行引入第三方 polyfill 或像本例一样使用回调进行后续处理。

Message Box 消息弹出框 - 图1

  1. <template>
  2. <el-button text @click="open">Click to open the Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. import type { Action } from 'element-plus'
  7. const open = () => {
  8. ElMessageBox.alert('This is a message', 'Title', {
  9. // if you want to disable its autofocus
  10. // autofocus: false,
  11. confirmButtonText: 'OK',
  12. callback: (action: Action) => {
  13. ElMessage({
  14. type: 'info',
  15. message: `action: ${action}`,
  16. })
  17. },
  18. })
  19. }
  20. </script>

确认消息

提示用户确认其已经触发的动作,并询问是否进行此操作时会用到此对话框。

调用$confirm方法即可打开消息提示,它模拟了系统的 confirm。 Message Box 组件也拥有极高的定制性,我们可以传入 options 作为第三个参数,它是一个字面量对象。 type 字段表明消息类型,可以为successerrorinfowarning,无效的设置将会被忽略。 需要注意的是,第二个参数 title 必须定义为 String 类型,如果是 Object,会被当做为 options使用。 在这里我们返回了一个 Promise 来处理后续响应。

Message Box 消息弹出框 - 图2

  1. <template>
  2. <el-button text @click="open">Click to open the Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. const open = () => {
  7. ElMessageBox.confirm(
  8. 'proxy will permanently delete the file. Continue?',
  9. 'Warning',
  10. {
  11. confirmButtonText: 'OK',
  12. cancelButtonText: 'Cancel',
  13. type: 'warning',
  14. }
  15. )
  16. .then(() => {
  17. ElMessage({
  18. type: 'success',
  19. message: 'Delete completed',
  20. })
  21. })
  22. .catch(() => {
  23. ElMessage({
  24. type: 'info',
  25. message: 'Delete canceled',
  26. })
  27. })
  28. }
  29. </script>

提交内容

当需要用户输入内容时,可以使用 Prompt 类型的消息框。

调用$prompt方法即可打开消息提示,它模拟了系统的 prompt。 可以用 inputPattern 字段自己规定匹配模式, 使用 inputValidator 来指定验证方法,它应该返回 BooleanString。 返回 falseString 表示验证失败, 返回的字符串将用作 inputErrorMessage,用来提示用户错误原因。 此外,可以用 inputPlaceholder 字段来定义输入框的占位符。

Message Box 消息弹出框 - 图3

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. const open = () => {
  7. ElMessageBox.prompt('Please input your e-mail', 'Tip', {
  8. confirmButtonText: 'OK',
  9. cancelButtonText: 'Cancel',
  10. inputPattern:
  11. /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/,
  12. inputErrorMessage: 'Invalid Email',
  13. })
  14. .then(({ value }) => {
  15. ElMessage({
  16. type: 'success',
  17. message: `Your email is:${value}`,
  18. })
  19. })
  20. .catch(() => {
  21. ElMessage({
  22. type: 'info',
  23. message: 'Input canceled',
  24. })
  25. })
  26. }
  27. </script>

个性化设置你的弹框

消息弹框可以被定制来展示各种内容。

上面提到的三个方法都是对 $msgbox 方法的二次包装。 本例直接调用 $msgbox 方法,使用了 showCancelButton 字段,用于显示取消按钮。 另外可使用 cancelButtonClass 为其添加自定义样式,使用 cancelButtonText 来自定义取消按钮文本(Confirm 按钮也具有相同的字段,在文末的 API 说明中有完整的字段列表)。 此例还使用了 beforeClose 属性, 当 beforeClose 被赋值且被赋值为一个回调函数时,在消息弹框被关闭之前将会被调用,并且可以通过该方法来阻止弹框被关闭。 它是一个接收三个参数:actioninstancedone 的方法。 使用它能够在关闭前对实例进行一些操作,比如为确定按钮添加 loading 状态等;此时若需要关闭实例,可以调用 done 方法(若在 beforeClose 中没有调用 done,则弹框便不会关闭)。

Message Box 消息弹出框 - 图4

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { h } from 'vue'
  6. import { ElMessage, ElMessageBox } from 'element-plus'
  7. const open = () => {
  8. ElMessageBox({
  9. title: 'Message',
  10. message: h('p', null, [
  11. h('span', null, 'Message can be '),
  12. h('i', { style: 'color: teal' }, 'VNode'),
  13. ]),
  14. showCancelButton: true,
  15. confirmButtonText: 'OK',
  16. cancelButtonText: 'Cancel',
  17. beforeClose: (action, instance, done) => {
  18. if (action === 'confirm') {
  19. instance.confirmButtonLoading = true
  20. instance.confirmButtonText = 'Loading...'
  21. setTimeout(() => {
  22. done()
  23. setTimeout(() => {
  24. instance.confirmButtonLoading = false
  25. }, 300)
  26. }, 3000)
  27. } else {
  28. done()
  29. }
  30. },
  31. }).then((action) => {
  32. ElMessage({
  33. type: 'info',
  34. message: `action: ${action}`,
  35. })
  36. })
  37. }
  38. </script>

TIP

弹出层的内容可以是 VNode,所以我们能把一些自定义组件传入其中。 每次弹出层打开后,Vue 会对新老 VNode 节点进行比对,然后将根据比较结果进行最小单位地修改视图。这也许会造成弹出层内容区域的组件没有重新渲染,例如 ( #8931 Message Box 消息弹出框 - 图5 )。 当这类问题出现时,解决方案是给 VNode 加上一个不相同的 key,参考 这里 Message Box 消息弹出框 - 图6

使用 HTML 片段

message 支持传入 HTML 片段来作为展示内容。

dangerouslyUseHTMLString 属性设置为 true,message 就会被当作 HTML 片段处理。

Message Box 消息弹出框 - 图7

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessageBox } from 'element-plus'
  6. const open = () => {
  7. ElMessageBox.alert(
  8. '<strong>proxy is <i>HTML</i> string</strong>',
  9. 'HTML String',
  10. {
  11. dangerouslyUseHTMLString: true,
  12. }
  13. )
  14. }
  15. </script>

WARNING

message 属性虽然支持传入 HTML 片段,但是在网站上动态渲染任意 HTML 是非常危险的,因为容易导致 XSS 攻击 Message Box 消息弹出框 - 图8 。 因此在 dangerouslyUseHTMLString 打开的情况下,请确保 message 的内容是可信的,永远不要将用户提交的内容赋值给 message 属性。

区分取消操作与关闭操作

有些场景下,点击取消按钮与点击关闭按钮有着不同的含义。

默认情况下,当用户触发取消(点击取消按钮)和触发关闭(点击关闭按钮或遮罩层、按下 ESC 键)时,Promise 的 reject 回调和 callback 回调的参数均为 ‘cancel’。 如果将distinguishCancelAndClose属性设置为 true,则上述两种行为的参数分别为 ‘cancel’ 和 ‘close’。

Message Box 消息弹出框 - 图9

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. import type { Action } from 'element-plus'
  7. const open = () => {
  8. ElMessageBox.confirm(
  9. 'You have unsaved changes, save and proceed?',
  10. 'Confirm',
  11. {
  12. distinguishCancelAndClose: true,
  13. confirmButtonText: 'Save',
  14. cancelButtonText: 'Discard Changes',
  15. }
  16. )
  17. .then(() => {
  18. ElMessage({
  19. type: 'info',
  20. message: 'Changes saved. Proceeding to a new route.',
  21. })
  22. })
  23. .catch((action: Action) => {
  24. ElMessage({
  25. type: 'info',
  26. message:
  27. action === 'cancel'
  28. ? 'Changes discarded. Proceeding to a new route.'
  29. : 'Stay in the current route',
  30. })
  31. })
  32. }
  33. </script>

居中布局

消息弹框支持使用居中布局。

center 属性设置为 true 可将内容居中显示。

Message Box 消息弹出框 - 图10

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. const open = () => {
  7. ElMessageBox.confirm(
  8. 'proxy will permanently delete the file. Continue?',
  9. 'Warning',
  10. {
  11. confirmButtonText: 'OK',
  12. cancelButtonText: 'Cancel',
  13. type: 'warning',
  14. center: true,
  15. }
  16. )
  17. .then(() => {
  18. ElMessage({
  19. type: 'success',
  20. message: 'Delete completed',
  21. })
  22. })
  23. .catch(() => {
  24. ElMessage({
  25. type: 'info',
  26. message: 'Delete canceled',
  27. })
  28. })
  29. }
  30. </script>

自定义图标

图标可以使用任意Vue 组件或 渲染函数 (JSX) Message Box 消息弹出框 - 图11 来自定义。

Message Box 消息弹出框 - 图12

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { markRaw } from 'vue'
  6. import { ElMessageBox } from 'element-plus'
  7. import { Delete } from '@element-plus/icons-vue'
  8. const open = () => {
  9. ElMessageBox.confirm(
  10. 'It will permanently delete the file. Continue?',
  11. 'Warning',
  12. {
  13. type: 'warning',
  14. icon: markRaw(Delete),
  15. }
  16. )
  17. }
  18. </script>

可拖动

设置 MessageBox 可以拖拽。

设置draggable属性为true来开启拖拽弹窗能力。

Message Box 消息弹出框 - 图13

  1. <template>
  2. <el-button text @click="open">Click to open Message Box</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElMessage, ElMessageBox } from 'element-plus'
  6. const open = () => {
  7. ElMessageBox.confirm(
  8. 'proxy will permanently delete the file. Continue?',
  9. 'Warning',
  10. {
  11. confirmButtonText: 'OK',
  12. cancelButtonText: 'Cancel',
  13. type: 'warning',
  14. draggable: true,
  15. }
  16. )
  17. .then(() => {
  18. ElMessage({
  19. type: 'success',
  20. message: 'Delete completed',
  21. })
  22. })
  23. .catch(() => {
  24. ElMessage({
  25. type: 'info',
  26. message: 'Delete canceled',
  27. })
  28. })
  29. }
  30. </script>

全局方法

如果你完整引入了 Element,它会为 app.config.globalProperties 添加如下全局方法:$msgbox$alert$confirm$prompt。 因此在 Vue instance 中可以采用本页面中的方式调用 MessageBox。 调用参数为:

  • $msgbox(options)
  • $alert(message, title, options)$alert(message, options)
  • $confirm(message, title, options)$confirm(message, options)
  • $prompt(message, title, options)$prompt(message, options)

应用程序上下文继承 > 2.0.4

现在 MessageBox 接受构造器的 context 作为第二个(如果你正在使用消息框变量的话) 参数,这个参数允许你将当前应用的上下文注入到消息中,这将允许你继承应用程序的所有属性。

  1. import { getCurrentInstance } from 'vue'
  2. import { ElMessageBox } from 'element-plus'
  3. // 在你的 setup 方法中
  4. const { appContext } = getCurrentInstance()!
  5. // 你可以像这样传递参数:
  6. ElMessageBox({}, appContext)
  7. // 或者正在使用不同的调用方式
  8. ElMessageBox.alert('Hello world!', 'Title', {}, appContext)

按需引入

如果你需要按需引入 MessageBox,那你可以像示例代码这样来引入。

  1. import { ElMessageBox } from 'element-plus'

那么对应于上述四个全局方法的调用方法依次为:ElMessageBoxElMessageBox.alertElMessageBox.confirmElMessageBox.prompt。 参数同上所述。

配置项

属性说明类型可选值默认值
autofocus打开 MessageBox 时是否自动获得焦点booleantrue
titleMessageBox 的标题string
messageMessageBox 的正文内容string
dangerouslyUseHTMLString是否将 message 作为 HTML 片段处理booleanfalse
type消息类型,用于图标显示stringsuccess / info / warning / error
icon自定义图标组件,会覆盖 type 的类型string | Component
custom-classMessageBox 的自定义类名string
custom-styleMessageBox 的自定义内联样式CSSProperties
callback若不使用 Promise,可以使用此参数指定 MessageBox 关闭后的回调function(action, instance),action 的值为’confirm’, ‘cancel’或’close’, instance 为 MessageBox 实例, 可以通过它访问实例上的属性和方法
show-closeMessageBox 是否显示右上角关闭按钮booleantrue
before-closemessageBox 关闭前的回调,会暂停消息弹出框的关闭过程。function(action, instance, done),action的值为’confirm’, ‘cancel’或’close’;instance为 MessageBox 实例,可以通过它访问实例上的属性和方法;done用于关闭 MessageBox 实例
distinguish-cancel-and-close是否将取消(点击取消按钮)与关闭(点击关闭按钮或遮罩层、按下 Esc 键)进行区分booleanfalse
lock-scroll是否在 MessageBox 出现时将 body 滚动锁定booleantrue
show-cancel-button是否显示取消按钮booleanfalse(以 confirm 和 prompt 方式调用时为 true)
show-confirm-button是否显示确定按钮booleantrue
cancel-button-text取消按钮的文本内容stringCancel
confirm-button-text确定按钮的文本内容stringOK
cancel-button-class取消按钮的自定义类名string
confirm-button-class确定按钮的自定义类名string
close-on-click-modal是否可通过点击遮罩层关闭 MessageBoxbooleantrue(以 alert 方式调用时为 false)
close-on-press-escape是否可通过按下 ESC 键关闭 MessageBoxbooleantrue(以 alert 方式调用时为 false)
close-on-hash-change是否在 hash 改变时关闭 MessageBoxbooleantrue
show-input是否显示输入框booleanfalse(以 prompt 方式调用时为 true)
input-placeholder输入框占位文本string
input-type输入框的类型stringtext
input-value输入框的初始文本string
input-pattern输入框的校验表达式regexp
input-validator输入框的校验函数。 应该返回一个 boolean 或者 string, 如果返回的是一个 string 类型,那么该返回值会被赋值给 inputErrorMessage 用于向用户展示错误消息。function
input-error-message校验未通过时的提示文本stringIllegal input
center是否居中布局booleanfalse
draggableMessageBox 是否可拖放booleanfalse
round-button是否使用圆角按钮booleanfalse
button-size自定义确认按钮及取消按钮的大小stringsmall / default / largedefault

源代码

组件 Message Box 消息弹出框 - 图14 文档 Message Box 消息弹出框 - 图15

贡献者

Message Box 消息弹出框 - 图16 云游君

Message Box 消息弹出框 - 图17 三咲智子

Message Box 消息弹出框 - 图18 JeremyWuuuuu

Message Box 消息弹出框 - 图19 kooriookami

Message Box 消息弹出框 - 图20 zz

Message Box 消息弹出框 - 图21 LIUCHAO

Message Box 消息弹出框 - 图22 opengraphica

Message Box 消息弹出框 - 图23 Delyan Haralanov

Message Box 消息弹出框 - 图24 iamkun

Message Box 消息弹出框 - 图25 Hefty

Message Box 消息弹出框 - 图26 Ryan2128

Message Box 消息弹出框 - 图27 Astar

Message Box 消息弹出框 - 图28 LinZhanMing

Message Box 消息弹出框 - 图29 bqy_fe

Message Box 消息弹出框 - 图30 Wiensss

Message Box 消息弹出框 - 图31 btea

Message Box 消息弹出框 - 图32 Aex

Message Box 消息弹出框 - 图33 yuzhang

Message Box 消息弹出框 - 图34 llllllllllx

Message Box 消息弹出框 - 图35 表弟

Message Box 消息弹出框 - 图36 on the field of hope

Message Box 消息弹出框 - 图37 zazzaz

Message Box 消息弹出框 - 图38 Hades-li

Message Box 消息弹出框 - 图39 C.Y.Kun