@tomorepo/formselect
v1.1.0
Published
## Install dependency in your project ``` npm install @tomorepo/formselect --save ```
Downloads
12
Readme
tomorepo/formselect
Install dependency in your project
npm install @tomorepo/formselect --saveImport component where you want to use it
import '@tomorepo/formselect';Use the component in your template
<form-select
model="TestValue"
:label="labelText">
<option value="Option One">
Option One
</option>
<option value="Option Two">
Option Two
</option>
</form-select>