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 (vue-next-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-next-select
Status: WIP
Live Demo
Features
Fully configurable
Single select
Multiple select
Searching
Async options support
Installation
$ npm install vue-next-select
import{ reactive, ref, createApp }from'vue'import VueSelect from'vue-next-select'import'vue-next-select/dist/index.min.css'const app =createApp({setup(){const value =ref(0)const options =reactive([0,1,2])return{
value,
options,}},components:{// Local registration
VueSelect,},template:`
<vue-select
v-model="value"
:options="options"
></vue-select
`,})// Or global registration
app.component('vue-select', VueSelect)
app.mount(document.querySelector('#app'))