import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-retention-doc', templateUrl: './cm-retention-doc.component.html', styleUrls: ['./cm-retention-doc.component.css'] }) export class CosmosRetentionDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-retention-doc/cm-retention.api.json'; doc_1 = { title: "基本用例", intro: `根据留存率的权重绘制不同的颜色`, htmlPath: './docs/components/cm-retention-doc/cm-retention-doc-1/cm-retention-doc-1.component.html', tsPath: './docs/components/cm-retention-doc/cm-retention-doc-1/cm-retention-doc-1.component.ts' } constructor() { } ngOnInit() { } ngOnDestroy() { } }