@logo-elements/tag-input
v23.0.9
Published
Input control for a collection of tags
Downloads
68
Readme
@logo-elements/tag-input
Input control for a collection of tags
Usage
Installation
npm install --save @logo-elements/tag-input
In an html file
<html>
<head>
<script type="module" src="@logo-elements/tag-input/logo-elements-tag-input.js"></script>
</head>
<body>
<logo-elements-tag-input></logo-elements-tag-input>
</body>
</html>
In a Polymer 3 element
import {PolymerElement, html} from '@polymer/polymer';
import '@logo-elements/tag-input/logo-elements-tag-input';
class SampleElement extends PolymerElement {
static get template() {
return html`
<logo-elements-tag-input></logo-elements-tag-input>
`;
}
}
customElements.define('sample-element', SampleElement);