import {Component} from '@angular/core'; import {CmNotificationService} from '../../../../../../components/cosmos.module'; @Component({ selector: 'cm-notification-doc-1', templateUrl: './notification-doc-1.component.html', }) export class NotificationDoc1Component { constructor(private _notification: CmNotificationService) { } createBasicNotification() { this._notification.blank('这是标题', '这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案'); } }