Skip to content

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

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open

Angular training - Igor Gursky #10

wants to merge 26 commits into from

Conversation

IgorGursky
Copy link

No description provided.

styleUrl: './blog-posts-comment.component.scss'
})
export class BlogPostsCommentComponent {
@Input() comment!: IBlogPostComment;
Copy link
Collaborator

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).

Copy link
Author

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 :)

Copy link
Collaborator

@alexbaluhin alexbaluhin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants