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