JSFiddle - React, Tailwind, and code Playground
by kukicvladimir
HTML
<body ng-app='myApp'>
<div ng-controller="MyCtrl">
<li *ngFor="let form of data">
<ng-template *ngFor = "let item of {{form.field_data | splitAndGet : ';'}}">
{{form.idform_data}} - {{form.form_name}} -
{{form.field_name}} - {{form.field_type}} -
{{form.field_desc}} -
{{item}}
</ng-template>
</li>
</div>
</body>
JavaScript
var myApp = angular.module('myApp',[]);
//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});
function MyCtrl($scope) {
$scope.name = 'Superhero';
}