# uni-copy **Repository Path**: bin552/uni-copy ## Basic Information - **Project Name**: uni-copy - **Description**: uni-app复制文本插件 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 19 - **Forks**: 2 - **Created**: 2020-07-12 - **Last Updated**: 2024-02-14 ## Categories & Tags **Categories**: cross-platform-mobiledev **Tags**: None ## README ## uni-app三端复制插件 uni-app的复制插件,复制字符串到剪贴板,兼容三端 小程序、App、H5,试过所有三端复制插件,这个是兼容性最好的,如有不兼容的情况,请留言 ### 使用方法 ``` // 引入文件 import uniCopy from '@/js_sdk/xb-copy/uni-copy.js' export default { methods: { // 触发方法 copy() { uniCopy({ content:'uni复制插件', success:(res)=>{ uni.showToast({ title: res, icon: 'none' }) }, error:(e)=>{ uni.showToast({ title: e, icon: 'none', duration:3000, }) } }) } } } ```