perf: add tagsViewIcon setting

This commit is contained in:
陈凯龙
2022-04-14 10:37:13 +08:00
parent 9b614fe892
commit d395f03a57
8 changed files with 47 additions and 6 deletions

View File

@@ -42,6 +42,9 @@ export const useAppStore = defineStore({
getTagsView(): boolean {
return this.tagsView
},
getTagsViewIcon(): boolean {
return this.tagsViewIcon
},
getLogo(): boolean {
return this.logo
},
@@ -110,6 +113,9 @@ export const useAppStore = defineStore({
setTagsView(tagsView: boolean) {
this.tagsView = tagsView
},
setTagsViewIcon(tagsViewIcon: boolean) {
this.tagsViewIcon = tagsViewIcon
},
setLogo(logo: boolean) {
this.logo = logo
},