vuex的取值与操作

store.js

state:{setVal:'  '}

mutatios:{  newSet(state,val){ state.setVal = val }   }

 

 

<script>

import {mapstate,mapMutations} from 'vuex'

取值

computed:{

...mapState(['setVal'])

}

值:this.setVal

更改

methods:{

  ...mapMutatios(['newSet'])

}

this.newSet('传值')

</script>

 

上一篇:与vuex来一次邂逅


下一篇:大前端- vue - vuex状态管理