From 667255bb4bcbc03901bf8f22c6067dd8f38921d7 Mon Sep 17 00:00:00 2001 From: YangFong Date: Sat, 28 Sep 2024 21:07:23 +0800 Subject: [PATCH] fix: default val of use_indent (#431) --- src/stores/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/index.ts b/src/stores/index.ts index fa3688bd4..d54bcce42 100644 --- a/src/stores/index.ts +++ b/src/stores/index.ts @@ -29,7 +29,7 @@ export const useStore = defineStore(`store`, () => { const toggleCiteStatus = useToggle(isCiteStatus) // 是否开启段落首行缩进 - const isUseIndent = useStorage(addPrefix(`use_indent`), true) + const isUseIndent = useStorage(addPrefix(`use_indent`), false) const toggleUseIndent = useToggle(isUseIndent) const output = ref(``)