1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00
2019-03-20 13:44:42 +08:00

30 lines
473 B
JavaScript

import defaultSettings from '@/settings'
const { showSettings, tagsView } = defaultSettings
const state = {
showSettings: showSettings,
tagsView: tagsView
}
const mutations = {
CHANGE_SETTING: (state, { key, value }) => {
if (state.hasOwnProperty(key)) {
state[key] = value
}
}
}
const actions = {
changeSetting({ commit }, data) {
commit('CHANGE_SETTING', data)
}
}
export default {
namespaced: true,
state,
mutations,
actions
}