ng5-simple-select
Version:
Simple select component for Angular 5.
24 lines (18 loc) • 665 B
Markdown
select for Angular 5, still working on it. You can check docs [here](https://tv1ster.github.io/ng5-simple-select/).
This is some simple example of this select
```js
import {NgSimpleSelectModule} from 'ng5-simple-select';
```
```html
<ng-simple-select [(ngModel)]="arrayModel"
[ ]="arrayModel?.displayValue"
name="fieldName"
ngDefaultControl>
<ng-simple-select-option *ngFor="let option of arrayOptions"
[ ]="option">
{{option.displayValue}}
</ng-simple-select-option>
</ng-simple-select>
```
Simple