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 withVueSelect
requirejs(['vue', 'vue-select'], function (Vue, vSelect) {
Vue.component('v-select', vSelect.VueSelect)
new Vue({})
});
Fixes
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.