Abstract
Base class of all themes.
The theme class determines how a page is rendered. It is loosely coupled with a router class instance which is also created by the Renderer class.
Return the application / root component instance.
Return the owner of this component.
Create new Component instance.
Stops listening to an event.
the event to stop listening to.
the function to remove from the listener array.
Starts listening to an event.
the event to listen to.
function to be called when an this event is emitted.
optional priority to insert this hook with. Higher priority is placed earlier in the listener array.
Optional hook to call post-render jobs
Optional hook to call pre-render jobs
Renders the provided page to a string, which will be written to disk by the Renderer
Emits an event to all currently subscribed listeners.
the event to emit.
any arguments required for the event.
The name of this component as set by the @Component decorator.
@Component
Base class of all themes.
The theme class determines how a page is rendered. It is loosely coupled with a router class instance which is also created by the Renderer class.