fix: default val of use_indent (#431)
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 14m36s

This commit is contained in:
YangFong 2024-09-28 21:07:23 +08:00 committed by GitHub
parent 85f7f11429
commit 667255bb4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(``)