mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-08 16:20:43 +08:00
11 lines
178 B
TypeScript
11 lines
178 B
TypeScript
export function useCopy() {
|
|
const copy = (text: string) => {
|
|
uni.setClipboardData({
|
|
data: String(text)
|
|
})
|
|
}
|
|
return {
|
|
copy
|
|
}
|
|
}
|