UNPKG

ng-ytl-zorro-antd

Version:

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

20 lines (18 loc) 621 B
import { Component } from '@angular/core'; @Component({ selector: 'nz-demo-spin-nested', template: ` <nz-spin [nzSpinning]="_isSpinning"> <nz-alert [nzType]="'info'" [nzMessage]="'消息提示的文案'" [nzDescription]="'消息提示的辅助性文字介绍消息提示的辅助性文字介绍消息提示的辅助性文字介绍'"> </nz-alert> </nz-spin> <div style="margin-top:8px;"> 切换加载状态: <nz-switch [(ngModel)]="_isSpinning"></nz-switch> </div> `, styles : [] }) export class NzDemoSpinNestedComponent { _isSpinning = false; }