-
Notifications
You must be signed in to change notification settings - Fork 2
Angular training - Igor Gursky #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
styleUrl: './blog-posts-comment.component.scss' | ||
}) | ||
export class BlogPostsCommentComponent { | ||
@Input() comment!: IBlogPostComment; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you want to go full "signals" mode, Angular also provides signal versions of @Input
and @Output
, input
and output
respectively. Two practical reasons to use them: you can incorporate them in computed()
or effect()
for async handling, or for change detection without Zone.Js (aka zoneless setup, which became available in developer preview in Angular 20).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for the details :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done!
No description provided.