feat: initial pagination

This commit is contained in:
arashsheyda
2023-04-26 18:31:25 +03:00
parent f40c48370c
commit 3ac731c5ee
3 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,10 @@
import { useClipboard } from '@vueuse/core'
export function useCopy() {
const clipboard = useClipboard()
return (text: string) => {
clipboard.copy(text)
// TODO: show toast
}
}