在vue js中完成动作后如何执行代码?

问题描述 投票:0回答:1

在vue js中完成动作后如何执行代码?这是我的登录操作login:({commit},loginDTO)=>{ commit('login',loginDTO); }我从这样的组件中调用它:this。$ store.dispatch('login',loginDTO);现在,我需要烤面包消息,但是在完成操作之后。

vue.js action toastr
1个回答
0
投票

[我认为您需要做的就是照常完成操作后调用toast函数,ajax返回200之后的回调函数,例如,我用过

https://github.com/ankurk91/vue-toast-notification

然后在回调中像这样运行它

this.$toast.open('You did it!');

(确保吐司已在您的Vue实例上注册)

© www.soinside.com 2019 - 2024. All rights reserved.