只能頁面中展示的嗎?我知道用this.$store.state可以取得這些state來操作
闭关修行中......
...mapState({ a: function (state) { return state.A }, b: function (state) { return state.b } })
在其他方法中直接存取this.a this.b即可
this.a this.b
直接用例如...mapState(['changePrePosition'])用的時候直接用this.changePrePosition()就行了
...mapState(['changePrePosition'])
this.changePrePosition()
...mapState(['value'])
使用this.value就可以取到值了,但是修改state的值需要經過mutations
this.value
mutations
在其他方法中直接存取
this.a this.b
即可直接用例如
...mapState(['changePrePosition'])
用的時候直接用this.changePrePosition()
就行了使用
this.value
就可以取到值了,但是修改state的值需要經過mutations