Skip to content
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

some syntax updated #7

Open
albehofy opened this issue Jun 22, 2023 · 0 comments
Open

some syntax updated #7

albehofy opened this issue Jun 22, 2023 · 0 comments

Comments

@albehofy
Copy link

albehofy commented Jun 22, 2023

Updated Syntax

The instructor in this's course used an old way to add (input) syntax, this's way not working in the new version of angular. it's updated

 @Component({
  selector: 'app-artist-details',
  templateUrl: './artist-details.component.html',
  inputs: ['artist']
}) 
  • We should add the input like this
export class ArtistDetailsComponent {
  @Input('artist') artist: any;
}

you can learn more about input and component in angular docs

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

No branches or pull requests

1 participant