美文网首页
vue 弹窗关闭跳到第三方网址(百度等)

vue 弹窗关闭跳到第三方网址(百度等)

作者: KevinLee0424 | 来源:发表于2019-11-15 14:37 被阅读0次

话不多说,直接上代码:

methods:{
    //单选框方法
    onChange(name, checked) {
      console.log(`agree name = ${name} is ${checked ? 'checked' : 'unchecked'}`)
    },
    // 成功确定方法
    onIconConfirms() {
    //   Toast({
    //     content: '你点击了确认',
    //   }),
      window.location.href = 'http://www.baidu.com',
      this.iconDialogs.open = false // 弹窗关闭,
    //PS:一定要加上http://  不然跳转还是当前域名
    },
    // 失败确定方法
    onIconConfirmf() {
      Toast({
        content: '你点击了确认按钮',
      })
      this.iconDialogf.open = false
    },
  },

相关文章

网友评论

      本文标题:vue 弹窗关闭跳到第三方网址(百度等)

      本文链接:https://www.haomeiwen.com/subject/skqsictx.html