相关疑难解决方法(0)

是否可以以同步模式执行$emit并从emit事件中获取结果

是否可以像同步一样执行并在调用方法本身中获取结果。所以,我想在 $emit 完成后执行下一条语句。其如下:

Parent component has method, 
                 doCustomValidation();

child component is as follow:
methods:
{
  Save: function(){
 // Can I get the response here from parent component and then, execute 
    doGenericValidation ?

 var errorFields = this.$emit('custom-validation');  
   doGenericValidation(errorFields);   //this is generic validations
}
Run Code Online (Sandbox Code Playgroud)

javascript emit vue.js vuejs2

4
推荐指数
1
解决办法
6038
查看次数

标签 统计

emit ×1

javascript ×1

vue.js ×1

vuejs2 ×1