20 lines
277 B
JavaScript
20 lines
277 B
JavaScript
const state = {
|
|
companyImg:localStorage.getItem("logo"),
|
|
isLogo:false
|
|
}
|
|
|
|
const mutations = {
|
|
SET_LOGO(state,img){
|
|
state.companyImg = img
|
|
},
|
|
SET_IS_LOGO(state,isLogo) {
|
|
state.isLogo = isLogo;
|
|
}
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
mutations,
|
|
}
|