Loading... ## 下载 ```shell yarn add vue-clipboard3 npm install vue-clipboard3 ``` ## 引入 ```ts import useClipboard from 'vue-clipboard3' const { toClipboard } = useClipboard() ``` ## 使用 > 注意:text 必须为 string,其他类型 clipboard 会报错 ```ts const copy = async (text) => { try { await toClipboard(text.toString()) alert('复制成功') } catch (e) { console.log(e) } } ``` 最后修改:2022 年 12 月 07 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏