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('已复制到剪贴板') },