From 1a1ffcb9aa102b951d685c81beb02bbd9742c540 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Wed, 26 Jun 2024 19:28:25 +0800 Subject: [PATCH 1/2] chore: remove `pinia-plugin-persist` --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 1d11519..f3b5d34 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,6 @@ "echarts": "^5.5.0", "md-editor-v3": "^4.15.2", "pinia": "^2.1.7", - "pinia-plugin-persist": "^1.0.0", "pinia-plugin-persistedstate": "^3.2.1", "quill": "^2.0.2", "radash": "^12.1.0", From e1d440b45ac84f136c78bf5ae65e17d941f06edc Mon Sep 17 00:00:00 2001 From: chansee97 Date: Wed, 26 Jun 2024 20:41:39 +0800 Subject: [PATCH 2/2] fix: perfect copy componet --- locales/en_US.json | 4 ++++ locales/zh_CN.json | 4 ++++ src/components/custom/CopyText.vue | 11 ++++++++--- src/directives/copy.ts | 3 ++- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/locales/en_US.json b/locales/en_US.json index 1d60415..932d7ef 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -148,6 +148,10 @@ "searchPlaceholder": "Search icon", "clearIcon": "Clear icon", "selectorTitle": "Icon selection" + }, + "copyText": { + "message": "Copied successfully", + "tooltip": "Copy" } } } diff --git a/locales/zh_CN.json b/locales/zh_CN.json index 6008c42..49feb6d 100644 --- a/locales/zh_CN.json +++ b/locales/zh_CN.json @@ -83,6 +83,10 @@ "inputPlaceholder": "选择目标图标", "searchPlaceholder": "搜索图标", "clearIcon": "清除图标" + }, + "copyText":{ + "tooltip":"复制", + "message":"复制成功" } }, "login": { diff --git a/src/components/custom/CopyText.vue b/src/components/custom/CopyText.vue index 49b7a9d..cb43076 100644 --- a/src/components/custom/CopyText.vue +++ b/src/components/custom/CopyText.vue @@ -10,8 +10,13 @@ const modelValue = defineModel('value') {{ modelValue }} - - - + + + {{ $t('components.copyText.tooltip') }} + diff --git a/src/directives/copy.ts b/src/directives/copy.ts index f483d91..bfd529f 100644 --- a/src/directives/copy.ts +++ b/src/directives/copy.ts @@ -1,4 +1,5 @@ import type { App, Directive } from 'vue' +import { $t } from '@/utils' interface CopyHTMLElement extends HTMLElement { _copyText: string @@ -25,7 +26,7 @@ export function install(app: App) { if (!clipboardEnable()) return copy(this._copyText) - window.$message.success('复制成功') + window.$message.success($t('components.copyText.message')) } function updataClipboard(el: CopyHTMLElement, text: string) {