angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
32 lines (27 loc) • 735 B
text/typescript
import { Component, Input, OnInit } from '@angular/core';
import { JsonSchemaFormService } from '../library/json-schema-form.service';
export class TabComponent implements OnInit {
private options: any;
formID: number;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(
private jsf: JsonSchemaFormService
) { }
ngOnInit() {
this.options = this.layoutNode.options;
}
}