@creaditor/chips-input-web-component
v1.0.0
Published
### Keep the following in mind
Downloads
3
Readme
Creaditor Chips with Autocomplete web component
Keep the following in mind
this package use mui
Installation
Node package
npm i @creaditor/chips-input-web-component --save
Include the module in your application
import "@creaditor/chips-input-web-component"
Add the tag in as dom element
<cdtr-chips-input-player></cdtr-chips-input>
Example
<script>
const chips = document.createElement("cdtr-chips-input");
chips.onChange = (data)=>{
}
chips.items = [
{title:"adi", selected:true},
{title:"assaf"},
{title:"yael"},
{title:"shay"},
{title:"talia"},
]
</script>