mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Migrated the input, output and queries to reactive APIs for better support of zoneless. PR Close #58425
14 lines
346 B
HTML
14 lines
346 B
HTML
<label [attr.for]="buttonId()">
|
|
<span class="docs-label">{{ label() }}</span>
|
|
<div class="docs-toggle">
|
|
<input
|
|
type="checkbox"
|
|
[id]="buttonId()"
|
|
role="switch"
|
|
(click)="toggle()"
|
|
[class.docs-toggle-active]="checked()"
|
|
[checked]="checked()"
|
|
/>
|
|
<span class="docs-slider"></span>
|
|
</div>
|
|
</label>
|