@anjuna/docs
Version:
Anjuna Documentation Web Components
20 lines (19 loc) • 579 B
JavaScript
export class PropDef {
render() {
return [
h("h4", null,
h("ad-decorator", null, "@Prop\u00A0"),
h("ad-api-name", null, this.prop.name),
h("ad-type-def", null, this.prop.type)),
h("p", null, this.prop.docs)
];
}
static get is() { return "ad-prop-def"; }
static get properties() { return {
"prop": {
"type": "Any",
"attr": "prop"
}
}; }
static get style() { return "/**style-placeholder:ad-prop-def:**/"; }
}