From 94d0ed1fd0d73be8e25d3b4a034aff73518bb5e8 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Thu, 27 Feb 2025 11:31:20 +0800 Subject: [PATCH] =?UTF-8?q?chore(playground):=20=E6=81=A2=E5=A4=8Ddsl?= =?UTF-8?q?=E6=9C=AC=E5=9C=B0=E5=AD=98=E5=82=A8=E7=9A=84key?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/src/pages/Editor.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/src/pages/Editor.vue b/playground/src/pages/Editor.vue index 45e1654d..01627dec 100644 --- a/playground/src/pages/Editor.vue +++ b/playground/src/pages/Editor.vue @@ -263,7 +263,7 @@ const moveableOptions = (config?: CustomizeMoveableOptionsCallbackConfig): Movea const save = () => { localStorage.setItem( - 'magicDSL2', + 'magicDSL', serialize(toRaw(value.value), { space: 2, unsafe: true, @@ -290,7 +290,7 @@ asyncLoadJs(`${VITE_ENTRY_PATH}/ds-value/index.umd.cjs`).then(() => { try { // eslint-disable-next-line no-eval - const magicDSL = eval(`(${localStorage.getItem('magicDSL2')})`); + const magicDSL = eval(`(${localStorage.getItem('magicDSL')})`); if (!magicDSL) { save(); } else {