在vue js中完成动作后如何执行代码?这是我的登录操作login:({commit},loginDTO)=>{
commit('login',loginDTO);
}
我从这样的组件中调用它:this。$ store.dispatch('login',loginDTO);现在,我需要烤面包消息,但是在完成操作之后。
[我认为您需要做的就是照常完成操作后调用toast函数,ajax返回200之后的回调函数,例如,我用过
https://github.com/ankurk91/vue-toast-notification
然后在回调中像这样运行它
this.$toast.open('You did it!');
(确保吐司已在您的Vue实例上注册)