TypeError: this.$on is not a function:
<template>
<div>
<v-select :options="options" label="country" :reduce="country => country.code" />
</div>
</template>import vSelect from 'vue-select'
export default {
data() {
return {
options: [{country: 'Canada', code: 'CA'},],
}
},
components: {
vSelect
},
}