Angular - Templates and Data Binding
Consider this template code:
And component code:
What is the problem here?
<input #userInput type="text"> <button (click)="logValue()">Log</button>
And component code:
logValue() {
console.log(userInput.value);
}What is the problem here?
