javascript - What is the exact purpose of using mapActions in vue js? - Stack Overflow

As I am learning Vue.js, I use mapState in many parts of my code for updating changes in rendering, whe

As I am learning Vue.js, I use mapState in many parts of my code for updating changes in rendering, whenever a change occurs in store layer. Recently, I also came to know about mapActions in vuex. But in most of the examples I search, I only use to see mapState. So, what is mapAction and its exact purpose?

As I am learning Vue.js, I use mapState in many parts of my code for updating changes in rendering, whenever a change occurs in store layer. Recently, I also came to know about mapActions in vuex. But in most of the examples I search, I only use to see mapState. So, what is mapAction and its exact purpose?

Share Improve this question edited Feb 7, 2023 at 13:26 Luke Girvin 13.5k10 gold badges67 silver badges85 bronze badges asked Feb 4, 2021 at 11:50 Krishna KrishzzKrishna Krishzz 611 gold badge1 silver badge4 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

In the ponent, you can dispatch actions through this.$store.dispatch, or use mapActions to bind actions to the ponent's methods.

Usually, actions may belong to a namespace, and mapActions can work well in this case.

// use $store.dispatch
methods: {
  addTodo() {
    this.$store.dispatch('xxx/yyy/zzz/addTodo');
  },
  removeTodo() {
    this.$store.dispatch('xxx/yyy/zzz/removeTodo');
  },
},
// use mapActions
methods: {
  ...mapActions('xxx/yyy/zzz', ['addTodo', 'removeTodo']),
},

In Vuex, actions are (usually) asynchronous operations which carry out mutations, as opposed to direct updates to the state. mapActions is just a helper that lets you call those methods from within a Vue ponent. You can find more info here: https://vuex.vuejs/guide/actions.html

By mapping actions you can build modularized apps, which will help you to minimize the overhead of maintaining method declarations in your page/ponents.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743696945a4491911.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信