UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

19 lines (17 loc) 532 B
import { Component } from '@angular/core'; @Component({ selector: 'nz-demo-switch-disabled', template: ` <nz-switch [(ngModel)]="switchValue" [nzDisabled]="isDisabled"></nz-switch> <div style="margin-top:8px;"> <button nz-button [nzType]="'primary'" (click)="toggleDisabled()">Toggle disabled</button> </div>`, styles : [] }) export class NzDemoSwitchDisabledComponent { switchValue = false; isDisabled = true; toggleDisabled = () => { this.isDisabled = !this.isDisabled; } }