Package Exports
- @morpheme/select
- @morpheme/select/package.json
- @morpheme/select/src/Changelog.stories.mdx
- @morpheme/select/src/Readme.stories.mdx
- @morpheme/select/src/VSelect.dark.scss
- @morpheme/select/src/VSelect.scss
- @morpheme/select/src/VSelect.spec.ts
- @morpheme/select/src/VSelect.stories.ts
- @morpheme/select/src/VSelect.vue
- @morpheme/select/src/index.ts
- @morpheme/select/src/types.ts
- @morpheme/select/src/vue.d.ts
Readme
Vue Select
Vue Select Component.
Installation
npm
npm i @morpheme/selectyarn
yarn add @morpheme/selectpnpm
pnpm add @morpheme/selectUsage
<script setup lang="ts">
import {ref} from 'vue';
import VSelect from '@morpheme/select';
import '@morpheme/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