@gits-id/select
v1.0.0-beta.4
Published
Vue Select Component
Downloads
64
Maintainers
Readme
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