复制链接vue

【复制链接】

    copyLink() {
      let urlImg = this.baseApi + '/staff/index.html#/signature/' + this.dataFORM.id
      let url = urlImg // 后台接口返回的链接地址
      let inputNode = document.createElement('input')  // 创建input
      inputNode.value = url // 赋值给 input 值
      document.body.appendChild(inputNode) // 插入进去
      inputNode.select() // 选择对象
      document.execCommand('Copy') // 原生调用执行浏览器复制命令
      inputNode.className = 'oInput'
      inputNode.style.display = 'none' // 隐藏
      this.$toast.success('复制成功')
    },```

你可能感兴趣的:(笔记,ios,xcode,objective-c)