import { Directive, ElementRef, OnInit, Input } from '@angular/core'; import { format } from 'timeago.js'; @Directive({ // tslint:disable-next-line: directive-selector selector: '[timeage]' }) export class TimeageDirective implements OnInit { @Input('time') time: Date; constructor(private el: ElementRef) { } ngOnInit(): void { const nativeElement = this.el.nativeElement; nativeElement.textContent = format(this.time, 'zh_CN'); } }