vuex存取值

commit: 同步操作【mutation 】

this.$store.commit('方法名',值)【存储】

  1. this.$store.commit('newBankName', this.textValue)

this.$store.state.方法名【取值】

dispatch: 异步操作【Action】

this.$store.dispatch('方法名',值)【存储】

this.$store.getters.方法名【取值】




                    
                    

你可能感兴趣的:(插件使用及问题解决,前端)