import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-popconfirm', templateUrl: './popconfirm.component.html', styleUrls: ['./popconfirm.component.less'] }) export class PopconfirmComponent implements OnInit { constructor() { } ngOnInit() { } }