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.
23 lines
309 B
23 lines
309 B
7 months ago
|
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
|
||
|
}
|