現在のバージョンでは、select2
コンポーネントは変更時機能を処理しません。このために、あなたが持っているselect2
コンポーネントを変更するために、あなたは1より多くの小道具を追加する必要があります。今すぐ
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
をしてコンポーネント内に、変更は次のようになります次のようにonChange関数を実行します:
<select2 v-model="value" :options="options" :on-change="onChange()"></select2>
「:on-change =」onChange() "' – Unirgy