Emit won't ever be trigged.
A workaround is to use option "initComplete" to do what you wish in the parent component.
Another is to integrate a trigger in DataTables component at line 89 like this one :
if(!Object.prototype.hasOwnPropery.call(options,"initComplete")){
options.initComplete = ()=>{
console.log("DT emits init");
this.$emit("init");
};
}
Emit won't ever be trigged.
A workaround is to use option "initComplete" to do what you wish in the parent component.
Another is to integrate a trigger in DataTables component at line 89 like this one :
if(!Object.prototype.hasOwnPropery.call(options,"initComplete")){options.initComplete = ()=>{console.log("DT emits init");this.$emit("init");};}