Vuex Tutorial #7 - Actions > JS프레임워크

JS프레임워크

Vuex Tutorial #7 - Actions 정보

Vue Vuex Tutorial #7 - Actions

본문

Actions  https://vuex.vuejs.org/kr/guide/actions.html

 

비동기 지원..

 

this.$store.dispatch('reducePrice', amount)

 

context.commit안에 reducePrice는 mutations안의 reducePrice를 부름

actions: {

  reducePrice: (context, payload) => {

    setTimeout(function(){

      context.commit('reducePrice', payload)

    }, 2000)

    }

}

 

https://github.com/iamshaunjp/vuex-playlist/tree/lesson-07

 

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로