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.
SzplatformWeb/src/store/modules/debug.js

23 lines
309 B

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
}