Instalación
Component of Input Autocomplete
$3
Install the dependencies and devDependencies and start the server.
``sh
$ npm install cplx-autocomplete
$ npm install bootstrap
`
$3
Importar en app.module.ts
First:
`sh
import { CplxAutocompleteModule } from 'cplx-autocomplete/public_api';
imports: [
CplxAutocompleteModule
]
`
#### Selector global en app.component.html
`sh
{{inputselected | json}}
[params]="['descripcion']" [placeholder]="'Buscar ...'">
{{searchText | json}} {{loading | json}}
(selectedObject)="inputselected = $event" [placeholder]="'Buscar ...'" [params]="['id','descripcion']">
``
$3
- Efrain Figueroa