import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-message', templateUrl: './message.component.html', styleUrls: ['./message.component.less'] }) export class MessageComponent implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy(){ } }