import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-dropdown-doc-6', templateUrl: './dropdown-doc-6.component.html', styleUrls: ['./dropdown-doc-6.component.css'] }) export class DropdownDoc6Component implements OnInit { log(e:any) { console.log('click dropdown button'); } constructor() {} ngOnInit() {} }