Skip to content

Instantly share code, notes, and snippets.

@twerske
Created May 13, 2022 20:25
Show Gist options
  • Save twerske/121512c9902cb35ae04291181cccc307 to your computer and use it in GitHub Desktop.
Save twerske/121512c9902cb35ae04291181cccc307 to your computer and use it in GitHub Desktop.
Bind to protected component members
@Component({
selector: 'my-component',
template: '{{ message }}', // Now compiles!
})
export class MyComponent {
protected message: string = 'Hello world';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment