• Overview
@angular/core

Output

decorator

Decorator that marks a class field as an output property and supplies configuration metadata. The DOM property bound to the output property is automatically updated during change detection.

API

@Output(alias?: string);

Usage Notes

You can supply an optional name to use in templates when the component is instantiated, that maps to the name of the bound property. By default, the original name of the bound property is used for output binding.

See Input decorator for an example of providing a binding name.

Jump to details