first commit

This commit is contained in:
2023-09-07 00:56:03 +08:00
commit c0ca154d31
718 changed files with 56107 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
import common from '@/store/modules/common.js';
export default new Vuex.Store({
modules:{
common
}
})

View File

@@ -0,0 +1,10 @@
export default {
state:{
keyboardHeight:0
},
mutations:{
changeKeyboardHeight(state,h){
state.keyboardHeight = h
}
}
}