New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gits-id/autocomplete

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gits-id/autocomplete

GITS Autocomplete Component

0.4.8-alpha.16
npm
Version published
Maintainers
1
Created
Source

GITS Autocomplete Component

Autocomplete Component.

Installation

npm

npm i @gits-id/autocomplete

yarn

yarn add @gits-id/autocomplete

pnpm

pnpm i @gits-id/autocomplete

Usage

<script setup lang="ts">
import Autocomplete from '@gits-id/autocomplete';
import {ref} from 'vue';

const items = [
  {value: 1, text: 'Wade Cooper'},
  {value: 2, text: 'Arlene Mccoy'},
  {value: 3, text: 'Devon Webb'},
  {value: 4, text: 'Tom Cook'},
  {value: 5, text: 'Tanya Fox'},
  {value: 6, text: 'Hellen Schmidt'},
];

const selected = ref();
</script>

<template>
  <Autocomplete v-model="selected" :items="items" />
</template>

Documentation

View Autocomplete documentation here.

License

MIT

Keywords

autocomplete

FAQs

Package last updated on 13 Jun 2022

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