18 lines
280 B
JavaScript
Raw Normal View History

2022-04-10 21:41:06 +08:00
import { defineStore } from 'pinia'
export const useThemeStore = defineStore('theme', {
state() {
return {
tag: {
visible: true,
height: 50,
},
}
},
actions: {
setTabVisible(visible) {
this.tag.visible = visible
},
},
})