码迷,mamicode.com
首页 > 其他好文 > 详细

vuex流程

时间:2019-11-04 13:47:03      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:sync   get   store   pat   mod   stat   port   接口   aio   

个人理解:

  1、actions  调用接口      调用方法     $store.state.dispatch("方法名",有参数传参)

  const actions ={

  

  async 方法名({commit},有参传参){

  const data = await axios.get("方法名",参数){

  params:{

    参数

    }

   })

  commit.("mutations的方法名",data  ) 

 }

}

 

  2、const state = {

  定义需要的参数

}

需要通过mutations更改state状态,调用需要在action

  3、const muataions = {

  方法名(state,传来的参数){

   state.要更改的参数 = 传来的参数 .要更改的参数

  }

}

 

export default {

  state,actions,mutatioins,module,getteer

}

-------------------------------------分割线---------------------------------------------

vuex流程

标签:sync   get   store   pat   mod   stat   port   接口   aio   

原文地址:https://www.cnblogs.com/yangruifan/p/11791424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!