复制剪贴板 vue3 web

Posted 沿着路走到底

tags:

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

1

import  ElMessage  from 'element-plus'

export const useCopy = (text: string) => 
    const input = document.createElement('input')
    input.value = text
    document.body.appendChild(input)
    input.select()

    // 执行复制操作
    document.execCommand('Copy')

    document.body.removeChild(input)
    ElMessage.success('复制成功')

1

以上是关于复制剪贴板 vue3 web的主要内容,如果未能解决你的问题,请参考以下文章

点击复制文字到剪贴板兼容性安卓ios

Safari 桌面 Web 共享 API 中缺少“复制”选项?

如何修改LNMP的web访问端口

通过 IIS 配置 Web 应用程序时,从剪贴板粘贴图像不起作用

如何从word文档复制公式到web编辑器

如何将网页上的内容复制到excel表格