vue如何实现一个询问框?(越详细越好,刚接触vue)

即下图效果:

img

要求:点击”开启试用“按钮后,弹出询问框,且页面背景变成灰色。

你去把vant 或者 elementui 的dialog看看

img


      this.$confirm("该权益三个月内有效, 是否开启?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          //确定后操作 
              this.$message({
                type: "success",
                message: "开启成功!",
              });
            })
        })
        .catch(() => {
          this.$message({
            type: "info",
            message: "取消开启",
          });
        });

不想自己手写的话就去引入组件,大部分组件库里都有这个弹框组件。

你要是用css框架,框架里直接会有这种弹框,你要是不用,自己写一个也不难点击弹出一个div 不难的