0
ボタンをクリックしたときに、console.log('hey');
がブラウザコンソールに記録されない理由は何ですか?ボタンをクリックしたときにコンポーネント機能が呼び出されない理由
<button (click)="hey">Click me!</button>
をクリックした場合、sub-component
を表示/非表示にしようとしています。
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html'
})
export class AppComponent {
public flag = false;
public hey() {
console.log('hey');
this.flag = true;
}
}
app.component.html
<button (click)="hey">Click me!</button>
<div *ngIf="flag">
<sub-component></sub-component>
</div>
index.htmlを
<body>
<my-app>Loading...</my-app>
</body>
' 'カッコがありません。 – Alex