Merge remote-tracking branch 'origin/20240912_adapter' into 20240912_adapter
commit
2734993366
@ -0,0 +1,20 @@
|
|||||||
|
const state = {
|
||||||
|
menuActive: 0,
|
||||||
|
}
|
||||||
|
const mutations = {
|
||||||
|
SET_MENU_ACTIVE: (state, menuActive) => {
|
||||||
|
state.menuActive = menuActive
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const actions = {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
namespaced: true,
|
||||||
|
state,
|
||||||
|
mutations,
|
||||||
|
actions
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue