10 lines
131 B
JavaScript
10 lines
131 B
JavaScript
export default {
|
|
state:{
|
|
keyboardHeight:0
|
|
},
|
|
mutations:{
|
|
changeKeyboardHeight(state,h){
|
|
state.keyboardHeight = h
|
|
}
|
|
}
|
|
} |