码迷,mamicode.com
首页 > 其他好文 > 详细

vue中对element的弹框messagebox的二次封装

时间:2019-08-06 15:29:05      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:img   mamicode   conf   UNC   需要   export   ted   elb   http   

在vue中对确认框的二次封装

使用场景:在页面中做某些需要警告的操作时的弹框提示

技术图片
1、在utils文件夹下新建一个confirm.js文件来对messageBox的封装,内容如下:

/** confirm.js */
import { MessageBox } from 'element-ui'

export function handleCofirm(text = '确定执行此操作吗?', type = 'warning') {
  return MessageBox.confirm(text, '提示', {
    confirmButtonText: '确定',
    cancelButtonText: '取消',
    type: type,
    center: true
  })
}

2、使用

import { handleCofirm } from '@/utils/confirm'
export default {
    deleteDomain(row) {
      handleCofirm('确认删除该标签吗?', 'warning',).then(res => {
         // 
      }).catch(err => {
        console.log('err', err) // cancel
        // 
      })
    }
  
}

vue中对element的弹框messagebox的二次封装

标签:img   mamicode   conf   UNC   需要   export   ted   elb   http   

原文地址:https://www.cnblogs.com/llff123/p/11309144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!