JSPM

  • Created
  • Published
  • Downloads 49
  • Score
    100M100P100Q92983F
  • License MIT

Vue Select Component

Package Exports

  • @morpheme/select
  • @morpheme/select/package.json
  • @morpheme/select/src/Changelog.stories.mdx
  • @morpheme/select/src/Readme.stories.mdx
  • @morpheme/select/src/Select.spec.ts
  • @morpheme/select/src/Select.stories.ts
  • @morpheme/select/src/Select.vue
  • @morpheme/select/src/SelectField.vue
  • @morpheme/select/src/SelectSearchInput.vue
  • @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/select

yarn

yarn add @morpheme/select

pnpm

pnpm add @morpheme/select

Usage

<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