0.0.3 • Published 4 years ago
lct-select v0.0.3
Select
This library was generated with Angular CLI version 12.1.0.
How to use
npm i lct-select --save
- Import LctSelectModule to component module
- Add
<lct-select></lct-select>
to html component - add change
title
attribute - add
options
attribute to select options - get value selected with
(value)
when select change value
Example
<lct-select
title="Title to component"
(value)="changeSelect($event)"
[options]="['Select one', 'One Option']]"
>
</lct-select>