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