Vue项目实战总结(六 element ui 中的消息提醒)

this.$message('这是一条消息提示');

在这里插入图片描述

this.$message({
    
    
          message: '恭喜你,这是一条成功消息',
          type: 'success'
        });

在这里插入图片描述

this.$message({
    
    
          message: '警告哦,这是一条警告消息',
          type: 'warning'
        });

在这里插入图片描述

this.$message.error('错了哦,这是一条错误消息');

在这里插入图片描述

this.$confirm("此操作将···, 是否继续?", "提示", {
    
    
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      })

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_53548177/article/details/119947185
今日推荐