У меня есть компонент, который пишет: Hello Angular6
app.component.html:
<hello name="{{ name }}"></hello>
app.component.ts:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular 6';
}
Задача состоит в том, чтобы создать новый компонент с именем "Userchange"
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'app-user-change',
templateUrl: './userchange.component.html',
styleUrls: ['./userchange.component.css']
})
export class UserChangeComponent {
@Input() change: string;
}
Там у меня есть кнопка и ввод текста типа, он должен работатьвот так: я пишу что-то в поле ввода, затем нажимаю кнопку, и 'name'
в app.component должен быть заданным текстом.
не могли бы вы мне помочь с этим?
Я только начал изучать Angular.