23.0.9 • Published 3 months ago

@logo-elements/tag-input v23.0.9

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
3 months ago

@logo-elements/tag-input

Input control for a collection of tags

npm version

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);

For more detailed information, please visit:

Logo Elements Documentation ↗