Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tedir-select

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tedir-select

Tedir Select is a Vue 3 & Web Component Custom SelectBox, ListBox, Taggable, etc.

  • 0.0.1-beta-14
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
decreased by-35.85%
Maintainers
1
Weekly downloads
 
Created
Source

Tedir Select

Tedir Select is a Custom SelectBox, Multiple ListBox, ComboBox Autocomplete, and Tags Input for Vue 3 and Web Components

Install & Usage

npm install tedir-select

or

yarn add tedir-select

Initialize it in the .vue file

<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>
Select box in string type

String SelectBox

Select box in object type

Object SelectBox

Select box in array of strings

Array of Strings SelectBox

Select box in array of objects

Array of Objects SelectBox

Combo box autocomplete in string and object

ComboBox Autocomplete

List box in string, object, array of strings and array of objects

ListBox

Keywords

FAQs

Package last updated on 29 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc