溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

bootstrap中select插件如何封裝成Vue2.0組件

發(fā)布時(shí)間:2021-07-07 11:25:01 來源:億速云 閱讀:120 作者:小新 欄目:web開發(fā)

這篇文章主要介紹bootstrap中select插件如何封裝成Vue2.0組件,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

因?yàn)閎ootstrap-select功能比較強(qiáng)大,而且樣式還不錯(cuò),所以在項(xiàng)目使用了vue,所以,覺得對bootstrap-select進(jìn)行封裝。

html

<my-select :options="input.options" v-model="input.value" ref="typeSelect" :index="index" :childidx="childIdx" :load="load" :multiple="input.multiple" :method="change"></my-select>

js

// select 插件
Vue.component('vm-select', {
 props : ['options', 'value', 'multiple', 'method', 'load', 'index', 'childidx'],
 template : "<select :multiple='multiple' class='selectpicker' data-live-search='true' title='請選擇' data-live-search-placeholder='搜索'><option :value='option.value' v-for='option in options'>{{ option.label }}</option></select>",
 mounted : function () {
 var vm = this;
 $(this.$el).selectpicker('val', this.value != null ? this.value : null);
 $(this.$el).on('changed.bs.select', function () {
 vm.$emit('input', $(this).val());
 if (typeof(vm.method) != 'undefined') {
 vm.method(vm.index, vm.childidx, this.value);
 }
 });
 $(this.$el).on('show.bs.select', function () {
 if (typeof(vm.load) != 'undefined') {
 vm.load(vm.index, vm.childidx);
 }
 });
 },
 updated : function () {
 $(this.$el).selectpicker('refresh');
 },
 destroyed : function () {
 $(this.$el).selectpicker('destroy');
 }
});

不得不提一下,在使用多個(gè)select的時(shí)候,在刪除某一個(gè)selcet對象的時(shí)候,加載的值會發(fā)生改變,糾結(jié)了半天發(fā)現(xiàn)是vue自身的問題:因?yàn)関ue對象有在重新渲染html的過程中會復(fù)用原來相同的vue對象,所以導(dǎo)致會導(dǎo)致selcet對象錯(cuò)位。解決方案:將每個(gè)select對象打上一個(gè)標(biāo)簽key。雖然可能導(dǎo)致性能的下降,但是不會導(dǎo)致錯(cuò)誤。

bootstrap中select插件如何封裝成Vue2.0組件

以上是“bootstrap中select插件如何封裝成Vue2.0組件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI