UNPKG

ngx-html-bridge

Version:

An Angular Template Parser to convert Angular templates into an array of standard, static HTML strings.

13 lines (11 loc) 255 B
import { Component } from "@angular/core"; @Component({ selector: "app-for", imports: [], templateUrl: "./for.html", styleUrl: "./for.scss", }) export class For { items: string[] = [...["1", "2", "3"], "one", "two", "three"]; idText = "id-text"; }