mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
feature: night mode storage
This commit is contained in:
parent
8d822ddbeb
commit
a9379065db
@ -70,7 +70,7 @@ const mutations = {
|
|||||||
state.currentSize = localStorage.getItem('size') || config.sizeOption[2].value
|
state.currentSize = localStorage.getItem('size') || config.sizeOption[2].value
|
||||||
state.codeTheme = localStorage.getItem('codeTheme') || config.codeThemeOption[0].value
|
state.codeTheme = localStorage.getItem('codeTheme') || config.codeThemeOption[0].value
|
||||||
state.citeStatus = localStorage.getItem('citeStatus') === 'true'
|
state.citeStatus = localStorage.getItem('citeStatus') === 'true'
|
||||||
state.nightMode = localStorage.getItem('nightMode') || false
|
state.nightMode = localStorage.getItem('nightMode') === 'true'
|
||||||
state.wxRenderer = new WxRenderer({
|
state.wxRenderer = new WxRenderer({
|
||||||
theme: setColor(state.currentColor),
|
theme: setColor(state.currentColor),
|
||||||
fonts: state.currentFont,
|
fonts: state.currentFont,
|
||||||
|
Loading…
Reference in New Issue
Block a user