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