vuex状态管理 ---store
export default new Vue.Store({ state: { count:0, }, mutations: { }, actions: { },
modules:{
} })
import {mapStates,mapMutations,mapActions} from 'vuex'
this.$store.state.count
this.%store.dispatch(actions)
this.$store.commit(mutations)