【已解决】el-message-box头部X按钮点击无响应

版本:
“szkingdom.yf.koca-template”: “2.6.1”,
“szkingdom.yf.koca-ui”: “2.7.0-2”,

代码:用的this.$confirm触发的

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

参数写完整即可