Aurelia specific events that will call before aurelia-started and aurelia-composed events

Hi Everyone, Are there any aurelia specific events that will call before aurelia-started and aurelia-composed events.

I heard before that app root custom element lifecycle will be called.

If you have some examples could you please provide me. I couldn’t find any examples as such.

1 Like

Unfortunately there’s none. But you could always dispatch an event yourself:

export class AppRoot {
  bind() {
    document.dispatchEvent(new CustomEvent('app:binding'));
  }
}

as an example?