import {Component} from '@angular/core'; import {CmNotificationService} from '../../../../../../components/cosmos.module'; @Component({ selector: 'cm-notification-doc-3', templateUrl: './notification-doc-3.component.html', }) export class NotificationDoc3Component { constructor(private _notification: CmNotificationService) { } createNotification = (type: string) => { this._notification.create(type, '这是标题', '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案'); }; }