Element MessageBox弹框的具体使用


Posted in Javascript onJuly 27, 2020

组件—弹框

消息提示

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('这是一段内容', '标题名称', {
     confirmButtonText: '确定',
     callback: action => {
      this.$message({
       type: 'info',
       message: `action: ${ action }`
      });
     }
    });
   }
  }
 }
</script>

确认消息

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('这是一段内容', '标题名称', {
     confirmButtonText: '确定',
     callback: action => {
      this.$message({
       type: 'info',
       message: `action: ${ action }`
      });
     }
    });
   }
  }
 }
</script>

提交内容

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$prompt('请输入邮箱', '提示', {
     confirmButtonText: '确定',
     cancelButtonText: '取消',
     inputPattern: /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/,
     inputErrorMessage: '邮箱格式不正确'
    }).then(({ value }) => {
     this.$message({
      type: 'success',
      message: '你的邮箱是: ' + value
     });
    }).catch(() => {
     this.$message({
      type: 'info',
      message: '取消输入'
     });    
    });
   }
  }
 }
</script>

自定义

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    const h = this.$createElement;
    this.$msgbox({
     title: '消息',
     message: h('p', null, [
      h('span', null, '内容可以是 '),
      h('i', { style: 'color: teal' }, 'VNode')
     ]),
     showCancelButton: true,
     confirmButtonText: '确定',
     cancelButtonText: '取消',
     beforeClose: (action, instance, done) => {
      if (action === 'confirm') {
       instance.confirmButtonLoading = true;
       instance.confirmButtonText = '执行中...';
       setTimeout(() => {
        done();
        setTimeout(() => {
         instance.confirmButtonLoading = false;
        }, 300);
       }, 3000);
      } else {
       done();
      }
     }
    }).then(action => {
     this.$message({
      type: 'info',
      message: 'action: ' + action
     });
    });
   }
  }
 }
</script>

使用 HTML 片段

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('<strong>这是 <i>HTML</i> 片段</strong>', 'HTML 片段', {
     dangerouslyUseHTMLString: true
    });
   }
  }
 }
</script>

区分取消与关闭

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('<strong>这是 <i>HTML</i> 片段</strong>', 'HTML 片段', {
     dangerouslyUseHTMLString: true
    });
   }
  }
 }
</script>

居中布局

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

<template>
 <el-button type="text" @click="open">点击打开 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
     confirmButtonText: '确定',
     cancelButtonText: '取消',
     type: 'warning',
     center: true
    }).then(() => {
     this.$message({
      type: 'success',
      message: '删除成功!'
     });
    }).catch(() => {
     this.$message({
      type: 'info',
      message: '已取消删除'
     });
    });
   }
  }
 }
</script>

全局方法

Element MessageBox弹框的具体使用

单独引用

Element MessageBox弹框的具体使用

Options

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

Element MessageBox弹框的具体使用

到此这篇关于Element MessageBox弹框的具体使用的文章就介绍到这了,更多相关Element MessageBox弹框内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Javascript 相关文章推荐
jquery新的绑定事件机制on方法的使用方法
Apr 15 Javascript
解释&amp;&amp;和||在javascript中的另类用法
Jul 28 Javascript
jQuery实现在textarea指定位置插入字符或表情的方法
Mar 11 Javascript
JQuery中Bind()事件用法分析
May 05 Javascript
javascript动画算法实例分析
Jul 31 Javascript
jQuery移动端图片上传组件
Jun 12 Javascript
第十篇BootStrap轮播插件使用详解
Jun 21 Javascript
JavaScript实战之带收放动画效果的导航菜单
Aug 16 Javascript
JavaScript运动框架 多值运动(四)
May 18 Javascript
JavaScript累加、迭代、穷举、递归等常用算法实例小结
May 08 Javascript
在Angular中实现一个级联效果的下拉框的示例代码
May 20 Javascript
js实现上传图片到服务器
Apr 11 Javascript
Vue 组件复用多次自定义参数操作
Jul 27 #Javascript
使用Element的InfiniteScroll 无限滚动组件报错的解决
Jul 27 #Javascript
Element InfiniteScroll无限滚动的具体使用方法
Jul 27 #Javascript
vue中父子组件传值,解决钩子函数mounted只运行一次的操作
Jul 27 #Javascript
Element Alert警告的具体使用方法
Jul 27 #Javascript
Element Badge标记的使用方法
Jul 27 #Javascript
谈一谈vue请求数据放在created好还是mounted里好
Jul 27 #Javascript
You might like
让codeigniter与swfupload整合的最佳解决方案
2014/06/12 PHP
php调用mysql存储过程实例分析
2014/12/29 PHP
ThinkPHP实现生成和校验验证码功能
2017/04/28 PHP
javascript 写的一个简单的timer
2009/07/30 Javascript
javascript firefox 自动加载iframe 自动调整高宽示例
2013/08/27 Javascript
借助JavaScript脚本判断浏览器Flash Player信息的方法
2014/07/09 Javascript
Actionscript与javascript交互实例程序(修改)
2016/09/22 Javascript
JS中SetTimeout和SetInterval使用初探
2017/03/23 Javascript
详解如何在NodeJS项目中优雅的使用ES6
2017/04/22 NodeJs
浅谈express 中间件机制及实现原理
2017/08/31 Javascript
使用Vue开发自己的Chrome扩展程序过程详解
2019/06/21 Javascript
Python入门篇之列表和元组
2014/10/17 Python
使用Python发送各种形式的邮件的方法汇总
2015/11/09 Python
python shell根据ip获取主机名代码示例
2017/11/25 Python
Python实现基于TCP UDP协议的IPv4 IPv6模式客户端和服务端功能示例
2018/03/22 Python
django静态文件加载的方法
2018/05/20 Python
Python基础之循环语句用法示例【for、while循环】
2019/03/23 Python
Python Gitlab Api 使用方法
2019/08/28 Python
Django中的模型类设计及展示示例详解
2020/05/29 Python
Python3基于plotly模块保存图片表格
2020/08/03 Python
详解python os.path.exists判断文件或文件夹是否存在
2020/11/16 Python
CSS3实现3D翻书效果
2016/06/20 HTML / CSS
HTML5 解析规则分析
2009/08/14 HTML / CSS
Hotels.com爱尔兰:全球酒店预订
2017/02/24 全球购物
StubHub新加坡:购买和出售全球活动门票
2017/03/10 全球购物
公司任命书模板
2014/06/06 职场文书
安全宣传标语
2014/06/10 职场文书
语文教育专业求职信
2014/06/28 职场文书
药品营销专业毕业生自荐信
2014/07/02 职场文书
辞职信格式模板
2015/02/27 职场文书
材料员岗位职责范本
2015/04/11 职场文书
2015迎新晚会活动总结
2015/07/16 职场文书
2015年学校总务工作总结
2015/07/20 职场文书
《学会看病》教学反思
2016/02/17 职场文书
2019年干货:自我鉴定
2019/03/25 职场文书
详解PHP服务器如何在有限的资源里最大提升并发能力
2021/05/25 PHP