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 = '足球,排球,篮球,乒乓球'; constructor() { } ngOnInit() { } CheckChanged(e) { console.log(e); } }