npm vue-select 1.3.0
v1.3.0 - Distributed Bundle

latest releases: 3.20.3, 3.20.2, 3.20.1...
7 years ago

New

VueSelect is now a transpiled UMD file, rather than a .vue file with it's own imports. This saves a lot of trouble with getting Babel to transpile things properly. The module exports the VueSelect component by default.

You can now access the logic mixins used in the primary VueSelect component:

import { mixins } from 'vue-select'
Breaking Changes for RequireJS
  • the ./umd/vue-select.js path has been replaced with ./dist/vue-select.js.
  • the component property of the UMD module has been replaced with VueSelect
requirejs(['vue', 'vue-select'], function (Vue, vSelect) {
  Vue.component('v-select', vSelect.VueSelect)
  new Vue({})
});

Fixes

  • VueSelect now comes transpiled out of the box, fixes #71, #57, #69, #70

Notes

I wish I could have gotten this one out sooner as it solves many issues, but I had to rest for about 15 days due to a concussion. Back behind the keyboard now and will be spending some time catching up on progress here.

Don't miss a new vue-select release

NewReleases is sending notifications on new releases.