Check Box
app.module.ts
import {MatCheckboxModule } from '@angular/material/checkbox';
@NgModule({
imports: [MatCheckboxModule]
})
예제 1
- template
<label id="fx-control">
Special Effects <input type="checkbox" checked="" id="fx-control-checkbox" (change)="onChangeSpecialEffect($event)">
</label>
- component
public onChangeSpecialEffect(e: any) {
console.log( e.target.checked);
}