import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-gender-doc', templateUrl: './cm-gender-doc.component.html', styleUrls: ['./cm-gender-doc.component.css'] }) export class CosmosGenderDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-gender-doc/cm-gender.api.json'; doc_1 = { title: "基本用例", intro: `使用cmPercentage属性,自定义男女百分比`, htmlPath: './docs/components/cm-gender-doc/cm-gender-doc-1/cm-gender-doc-1.component.html', tsPath: './docs/components/cm-gender-doc/cm-gender-doc-1/cm-gender-doc-1.component.ts' } constructor() { } ngOnInit() { } ngOnDestroy() { } }