@gits-id/select
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-beta.4 • Public • Published

Vue Select

Vue Select Component.

Installation

npm

npm i @gits-id/select

yarn

yarn add @gits-id/select

pnpm

pnpm add @gits-id/select

Usage

<script setup lang="ts">
import {ref} from 'vue';
import VSelect from '@gits-id/select';
import '@gits-id/select/dist/style.css';

const items = ref([
  {
    text: 'Item 1',
    value: 1,
  },
  {
    text: 'Item 2',
    value: 2,
  },
]);
</script>

<template>
  <VSelect :items="items" />
</template>

Documentation

View full documentation here.

License

MIT

Package Sidebar

Install

npm i @gits-id/select

Weekly Downloads

6

Version

1.0.0-beta.4

License

MIT

Unpacked Size

173 kB

Total Files

26

Last publish

Collaborators

  • gravitano