import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-tree-doc', templateUrl: './cm-tree-doc.component.html', styleUrls: ['./cm-tree-doc.component.css'] }) export class CosmosTreeDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-tree-doc/cm-tree.api.json'; doc_1 = { title: "基本用例", intro: `提供一套横向排布的树状图`, htmlPath: './docs/components/cm-tree-doc/cm-tree-doc-1/cm-tree-doc-1.component.html', tsPath: './docs/components/cm-tree-doc/cm-tree-doc-1/cm-tree-doc-1.component.ts' } constructor() { } ngOnInit() { } ngOnDestroy() { } }