我在全局的action里定义了一个方法,用于请求数据
saveForm (context,pay) {
Util.ajax({
method: 'post',
url: '/rest',
data: pay
})
}
在组件中,我使用this.$store.dispatch('saveForm',JSON.stringify(pay)),把值传过去,那么请求返回回来的值,我该怎么写才能在组件里取到呢?
RISEBY
相关分类