Skip to content

v1.3.0 - Distributed Bundle

Compare
Choose a tag to compare
@sagalbot sagalbot released this 04 Jul 20:36
· 677 commits to master since this release

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.