From f3862e8385fefb5172a6bc577ac73469500b539a Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Thu, 27 Aug 2020 16:20:03 +0200 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E5=BF=AB=E6=8D=B7?= =?UTF-8?q?=E9=94=AE=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Setting.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Setting.vue b/src/components/Setting.vue index ad194bf..a1903b1 100644 --- a/src/components/Setting.vue +++ b/src/components/Setting.vue @@ -396,7 +396,7 @@ export default { }, expShortcut () { const arr = [...this.shortcutList] - const str = JSON.stringify(arr) + const str = JSON.stringify(arr, null, 4) clipboard.writeText(str) this.$message.success('已复制到剪贴板') },