tedir-select
Version:
Tedir Select is a Vue 3 & Web Component Custom SelectBox, ListBox, Taggable, etc.
44 lines (32 loc) • 1.36 kB
Markdown
Tedir Select is a Custom SelectBox, Multiple ListBox, ComboBox Autocomplete, and Tags Input for Vue 3 and Web Components
```bash
npm install tedir-select
or
yarn add tedir-select
```
Initialize it in the .vue file
```html
<script setup>
import { ref, reactive } from 'vue'
import { SelectBox, ComboBox, ListBox, TagBox, CategoryBox } from 'tedir-select'
const stateRef = ref('')
const options = reactive(['Option One', 'Option Two', 'Option Three'])
</script>
<template>
<SelectBox v-model="stateRef" :options="options" placeholder="-- Select Option --" :size="5" />
</template>
```





