diff --git a/src/hook/index.ts b/src/hook/index.ts
index 73ca960..6f40bc7 100644
--- a/src/hook/index.ts
+++ b/src/hook/index.ts
@@ -2,3 +2,4 @@ export * from './useAppRouter';
export * from './useBoolean';
export * from './useLoading';
export * from './useEcharts';
+export * from './useClipBoard';
diff --git a/src/hook/useClipBoard.ts b/src/hook/useClipBoard.ts
new file mode 100644
index 0000000..0e39d74
--- /dev/null
+++ b/src/hook/useClipBoard.ts
@@ -0,0 +1,26 @@
+export function useClipBoard() {
+ function isSupport() {
+ return !navigator.clipboard;
+ }
+ async function copy(text: string) {
+ if (isSupport()) {
+ return window.$message?.error('当前浏览器不支持复制!');
+ }
+ if (!text) {
+ window.$message?.error('请输入要复制的内容');
+ return;
+ }
+ navigator.clipboard.writeText(text).then(
+ () => {
+ window.$message?.success(`复制成功:${text}`);
+ },
+ () => {
+ window.$message?.error('复制失败');
+ },
+ );
+ }
+
+ return {
+ copy,
+ };
+}
diff --git a/src/views/plugin/clipboard/index.vue b/src/views/plugin/clipboard/index.vue
index 65a1235..dc446c5 100644
--- a/src/views/plugin/clipboard/index.vue
+++ b/src/views/plugin/clipboard/index.vue
@@ -2,33 +2,17 @@
- 复制
+ 复制