this.$store.dispatch('setText','jj'); console.log(this.$store.state.text);//这里打印的是jj
const store = new Vuex.Store({ state:{ wxInfo:{}, text:'ss' }, ...
computed:{ ...mapState([ 'wxInfo', 'text' ]) },created(){ console.log(this.text)//但是在组件这里打印的却是 ss ...
米脂
四季花海