h5原生 一键复制

h5原生 一键复制

在pubilc文件夹index种引入

    
    
  

{{ detail.outTradeNo }}

copyAction(outTradeNo) {
        const that=this
        // TODO: 复制订单号
        var clipboard = new window.ClipboardJS('.button-copy', {
          text: function () {
            return outTradeNo
          },
        })

        clipboard.on('success', function () {
          that.$toast('复制成功!')
          return
        })

        clipboard.on('error', function () {
          that.$toast('复制失败!请手动复制')
          return
        })
      },

你可能感兴趣的:(vue,js,h5,前端,javascript,html)