Vue —— 复制文本

Posted cnloop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue —— 复制文本相关的知识,希望对你有一定的参考价值。

copyText() {
    const input = document.createElement("input");
    input.setAttribute("readonly", "readonly");
    input.setAttribute("value", "hello world");
    document.body.appendChild(input);
    input.setSelectionRange(0, 9999);
    if (document.execCommand("copy")) {
        document.execCommand("copy");
        console.log("复制成功");
    }
    document.body.removeChild(input);
}

链接:https://www.jb51.net/article/135605.htm

以上是关于Vue —— 复制文本的主要内容,如果未能解决你的问题,请参考以下文章

在vue中使用document.execCommand实现复制文本的功能

vue页面文本禁止复制

vue页面文本禁止复制

使用vscode,新建.vue文件,tab自动生成vue代码模板

如何将数据从活动传输到片段? [复制]

我应该如何使用 Outlook 发送代码片段?