复制剪贴板 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的主要内容,如果未能解决你的问题,请参考以下文章