import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-age-doc', templateUrl: './cm-age-doc.component.html', styleUrls: ['./cm-age-doc.component.css'] }) export class CosmosAgeDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-age-doc/cm-age.api.json'; doc_1 = { title: "基本用例", intro: `使用cmData属性,自定义年龄占比、横坐标背景图片、背景颜色`, htmlPath: './docs/components/cm-age-doc/cm-age-doc-1/cm-age-doc-1.component.html', tsPath: './docs/components/cm-age-doc/cm-age-doc-1/cm-age-doc-1.component.ts' }; constructor() { } ngOnInit() { } ngOnDestroy() { } }