尝试使用this组件。
<select2 v-model="value" :options="options" @change="onChange()"></select2>
@change
回调未被调用。我知道我可以使用watch: { value: function () { ... }
但是,有没有办法捕获底层标记事件?
答案 0 :(得分:3)
在当前版本中,select2
组件不处理更改功能。为此,您必须修改select2
组件,您必须再添加一个prop:onChange
并在组件内部执行此prop中传递的函数,更改将如下所示:
Vue.component('select2', {
props: ['options', 'value', 'onChange'], //Added one more prop
template: '#select2-template',
mounted: function () {
var vm = this
$(this.$el)
.val(this.value)
// init select2
.select2({ data: this.options })
// emit event on change.
.on('change', function () {
vm.$emit('input', this.value)
//New addition to handle onChange function
if (this.onChange !== undefined) {
this.onChange(this.value)
}
})
},
watch: {
value: function (value) {
// update value
$(this.$el).select2('val', value)
},
options: function (options) {
// update options
$(this.$el).select2({ data: options })
}
},
destroyed: function () {
$(this.$el).off().select2('destroy')
}
})
现在,您可以传递一个将在onChange上执行的函数,如下所示:
<select2 v-model="value" :options="options" :on-change="onChange()"></select2>