Skip to content

Instantly share code, notes, and snippets.

@lars-erik
Created July 11, 2018 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lars-erik/df41d1d889264b3ff2c1de1826ca936d to your computer and use it in GitHub Desktop.
Save lars-erik/df41d1d889264b3ff2c1de1826ca936d to your computer and use it in GitHub Desktop.
Failing entry component
@Component({
selector: "list-parameters",
templateUrl: "./list-parameters.html"
})
export class ListParametersComponent {
@Input()
public query: any = {};
@Output()
queryChange = new EventEmitter();
change() {
this.queryChange.emit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment