//1.通过commit方法向store/index.js/mutations派发一个事件export default { name: 'home', methods:{ handleClick(){ this.$store.commit("changeCity") } }}//2.在mutaions函数中接收派发过来的事件,并更改数据mutations:{ changeCity(state){ state.city="成都" }}