element-ui $msgbox

$msgbox(options)

  • title      MessageBox 标题部分  关闭按钮
  • message    消息主体   加上关闭按钮
  • type       图标          success / info / warning / error
  • showClose  关闭按钮控制
  • center     居中布局
  • showConfirmButton  确定按钮控制
  • confirmButtonText  确定文本

 

window.$app.$msgbox({
  title:'',
  message: errorMsg,
  showClose: true,
  center: false,
  showConfirmButton: false,
  type: 'warning'
})
发布了231 篇原创文章 · 获赞 3 · 访问量 7973

猜你喜欢

转载自blog.csdn.net/qq_32265719/article/details/103985487