vuex:具有自定义参数的mapActions

时间:2018-10-17 22:00:07

标签: vue.js vuex

我可以从使用vuex映射了data动作的组件的vuex属性中将参数传递给mapActions动作吗?

例如,someValue应该通过映射的动作传递给动作add

import { mapActions } from 'vuex'
...
data: function() {
      return {
        someValue: ''
      }
    },
methods: mapActions([
  'add'
])

1 个答案:

答案 0 :(得分:0)

<input @model="someValue" v-on:keyup="add(someValue)" type="text" />帮了我大忙。