Closed devWaleed closed 6 years ago
introJS is chaining events and start() needs to be called here apparently. So correct way to do this is::
this.$intro()
.onbeforechange(function (targetElement) {
console.log("before new step"); // no output
console.log(targetElement); // gets element
})
.start();
My intro of app is working correctly but I am unable to listen to events.
In mounted of main App.js I have this code: