|
const state = {
|
|
debugTime:"",
|
|
}
|
|
|
|
const mutations = {
|
|
CHANGE_TIME: (state, debugTime) => {
|
|
state.debugTime = debugTime
|
|
},
|
|
}
|
|
|
|
const actions = {
|
|
changeDebugTime({ commit },debugTime) {
|
|
commit('CHANGE_TIME',debugTime)
|
|
},
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
mutations,
|
|
actions
|
|
}
|