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
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@morpheme/select) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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