import { Component, OnInit, OnDestroy} from '@angular/core'; @Component({ selector: 'cm-tooltip-doc', templateUrl: './tooltip-doc.component.html', styleUrls: ['./tooltip-doc.component.css'] }) export class TooltipDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/tooltip-doc/tooltip.api.json'; doc_1 = { title: "基本", intro: `最简单的用法。`, htmlPath: './docs/components/tooltip-doc/tooltip-doc-1/tooltip-doc-1.component.html', tsPath: './docs/components/tooltip-doc/tooltip-doc-1/tooltip-doc-1.component.ts' } doc_2 = { title: "位置", intro: `位置有12个方向。`, htmlPath: './docs/components/tooltip-doc/tooltip-doc-2/tooltip-doc-2.component.html', tsPath: './docs/components/tooltip-doc/tooltip-doc-2/tooltip-doc-2.component.ts' } doc_3 = { title: "模板", intro: `装载模板。`, htmlPath: './docs/components/tooltip-doc/tooltip-doc-3/tooltip-doc-3.component.html', tsPath: './docs/components/tooltip-doc/tooltip-doc-3/tooltip-doc-3.component.ts' } constructor() { } ngOnInit() { } ngOnDestroy(){ } }