zr-select-selection
v3.0.1
Published
A select selection component.
Downloads
7
Readme
About
A select selection component.
Installation
Install through npm:
npm install --save zr-select-selection
Then include in your apps module:
import { NgModule } from '@angular/core';
import { ZrSelectSelectionModule } from 'zr-select-selection';
@NgModule({
imports: [
ZrSelectSelectionModule.forRoot()
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<zr-select-selection [selects]="selects1" [(model)]="selectValue1"></zr-select-selection>'
})
export class MyComponent {}