Svelte Tags

-
Pro Component

The Svelte Tags refers to a simple plugin providing a Svelte user interface for managing tags.
Keep reading our Svelte Tags examples and learn how to use this plugin.


Initialization

<script>
import TagsInput from "../../../components/Inputs/TagsInput.svelte";

let inputs = {
  tags: ["BUCHAREST", "IASI", "TIMISOARA"]
};

</script>

Example

<TagsInput
  model={inputs.tags}
  placeholder="Add new Tag"
  class="test" />