前端vue实现点击复制,将文本复制

页面模板代码


复制

 

script代码

 // 复制邀请码
      copyBtn() {
        let copyText = this.$refs.code;
        copyText.select(); // 选择对象
        document.execCommand("Copy");
      },

 

 

 

你可能感兴趣的:(前端技术,前端实现点击复制,vue,vue点击复制)