You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
578 B
33 lines
578 B
2 years ago
|
import defaultSettings from '@/settings'
|
||
|
|
||
|
const { showSettings, fixedHeader, sidebarLogo } = defaultSettings
|
||
|
|
||
|
const state = {
|
||
|
showSettings: showSettings,
|
||
|
fixedHeader: fixedHeader,
|
||
|
sidebarLogo: sidebarLogo
|
||
|
}
|
||
|
|
||
|
const mutations = {
|
||
|
CHANGE_SETTING: (state, { key, value }) => {
|
||
|
// eslint-disable-next-line no-prototype-builtins
|
||
|
if (state.hasOwnProperty(key)) {
|
||
|
state[key] = value
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const actions = {
|
||
|
changeSetting({ commit }, data) {
|
||
|
commit('CHANGE_SETTING', data)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
namespaced: true,
|
||
|
state,
|
||
|
mutations,
|
||
|
actions
|
||
|
}
|
||
|
|