mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-06 10:20:26 +02:00
add parameter for chat mute and show side
This commit is contained in:
parent
4d023df692
commit
355c0eac0d
2 changed files with 20 additions and 0 deletions
|
@ -27,6 +27,14 @@ export const mutations = mutationTree(state, {
|
|||
state.side = !state.side
|
||||
set('side', state.side)
|
||||
},
|
||||
showSide(state) {
|
||||
state.side = true
|
||||
set('side', state.side)
|
||||
},
|
||||
hideSide(state) {
|
||||
state.side = false
|
||||
set('side', state.side)
|
||||
},
|
||||
})
|
||||
|
||||
export const actions = actionTree({ state, getters, mutations }, {})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue