Angular Tags

-
Pro Component

The Angular Tags refers to a simple plugin providing a Angular user interface for managing tags.
Keep reading our Angular Tags examples and learn how to use this plugin.


Usage

In order to use this plugin on your page you will need to import the TagInputModule into your module:

import { TagInputModule } from 'ngx-chips';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; // this is needed!

@NgModule({
  imports: [ TagInputModule, BrowserAnimationsModule, ...OtherModules ] // along with your other modules
})
export class AppModule {}

See full documentation here: Gbuomprisco ngx-chips

Example

<tag-input
  [(ngModel)]="tagItems"
  theme="regular-theme"
  name="tags">
</tag-input>