ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
19 lines (16 loc) • 575 B
text/typescript
import {Component} from '@angular/core';
import {NzNotificationService} from '../../../index.showcase';
export class NzDemoNotificationHtmlComponent {
createBasicNotification = () => {
this._notification.html('<strong>自定义通知栏内HTML</strong><br><p>HTML</p>');
};
constructor(private _notification: NzNotificationService) {
}
}