mirror of
https://github.com/CorentinTh/it-tools
synced 2025-12-11 22:05:31 +00:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import {copyToClipboard} from "../utils/helpers";
|
|
|
|
export const copyable = {
|
|
methods: {
|
|
copy(text, toastText = 'Copied to clipboard !'){
|
|
copyToClipboard(text);
|
|
this.$toast.success(toastText)
|
|
}
|
|
}
|
|
} |