import { Component, OnInit, Type } from '@angular/core'; import { FormGroup, FormControl } from '@angular/forms'; @Component({ selector: 'app-tag-demo', templateUrl: './tag-demo.component.html', styleUrls: ['./tag-demo.component.scss'] }) export class TagDemoComponent implements OnInit { tags = 'tag1,tag2,tag3'; constructor() { } ngOnInit() { } }