Options
All
  • Public
  • Public/Protected
  • All
Menu

Module components

The components module.

The components module provides a way to add logic to the application. It consists out of the Components class acting as a repository containing all components and the Component class providing a abstract base component which should be extended. A small example:

export class MyComponent extends Component {
     public init(){}
     public boot(){}
}
Components.register('my', MyComponent);

Index