Files
im-system/l-im-app-imooc-master/l-im-app-imooc/store/modules/common.js
2023-09-07 00:56:03 +08:00

10 lines
131 B
JavaScript

export default {
state:{
keyboardHeight:0
},
mutations:{
changeKeyboardHeight(state,h){
state.keyboardHeight = h
}
}
}