import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-pie-doc', templateUrl: './cm-pie-doc.component.html', styleUrls: ['./cm-pie-doc.component.css'] }) export class CosmosPieDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-pie-doc/cm-pie.api.json'; doc_1 = { title: "基本", intro: `最简单的用法。`, htmlPath: './docs/components/cm-pie-doc/cm-pie-doc-1/cm-pie-doc-1.component.html', tsPath: './docs/components/cm-pie-doc/cm-pie-doc-1/cm-pie-doc-1.component.ts' } constructor() { } ngOnInit() { } ngOnDestroy() { } }