admin manage page update

This commit is contained in:
2023-12-22 14:10:44 +08:00
parent a45d591988
commit e8e402cf4d
26 changed files with 1676 additions and 361 deletions

View File

@@ -5,10 +5,15 @@ Vue.use(Vuex)
export default new Vuex.Store({
state: {
theme:'dark',
},
getters: {
},
mutations: {
SET_THEME:(state,data)=>{
state.theme=data;
window.sessionStorage.setItem('theme',data);
}
},
actions: {
},