那夜你很温柔. 2022-04-18 14:18 采纳率: 28.6%
浏览 42
已结题

关于Message-box的问题,如何解决?

如何使用element-ui的messagebox做一个系统的新用户引导

  • 写回答

3条回答 默认 最新

  • Iam_楠 前端领域新星创作者 2022-04-18 15:00
    关注
    
    <template>
      <div style="width: 100%">
        <el-button type="text" @click="open">点击打开 Message Box</el-button>
      </div>
    </template>
     
    <script>
      export default {
        data() {
          return {
          }
        },
        methods: {
          open() {
            this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
              confirmButtonText: '确定',
              cancelButtonText: '取消',
              type: 'warning',
              center: true
            }).then(() => {
              this.$message({
                type: 'success',
                message: '删除成功!'
              });
            }).catch(() => {
              this.$message({
                type: 'info',
                message: '已取消删除'
              });
            });
          }
        }
      }
    </script>
     
    <style>
    </style>
    
    
    
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 6月15日
  • 创建了问题 4月18日

悬赏问题

  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题