mirror of
https://github.com/doocs/md.git
synced 2024-11-24 11:00:33 +08:00
fix: default val of use_indent (#431)
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 14m36s
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 14m36s
This commit is contained in:
parent
85f7f11429
commit
667255bb4b
@ -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(``)
|
||||
|
Loading…
Reference in New Issue
Block a user