Posts by Christian Gustavo • 1 point
2 posts
-
0
votes1
answer43
viewsA: Angular: Attribute is not being updated on the screen, but is in the component
Hello, try to remove the this. from within the {{ }}, and check that the summary variable is in the scope of the component. When the variable is called by HTML there is no need to use this.…
-
0
votes1
answer29
viewsA: Is it possible to change the value of a variable that was decorated with Input()?
You can use a set method for this purpose. This way you run a logic before passing the value to your class variable. For example: @Input() set disciplinasTurma(disciplinas: string[]): void {…
angularanswered Christian Gustavo 1