中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

發布時間:2021-07-07 11:25:01 來源:億速云 閱讀:121 作者:小新 欄目:web開發

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

因為bootstrap-select功能比較強大,而且樣式還不錯,所以在項目使用了vue,所以,覺得對bootstrap-select進行封裝。

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');
 }
});

不得不提一下,在使用多個select的時候,在刪除某一個selcet對象的時候,加載的值會發生改變,糾結了半天發現是vue自身的問題:因為vue對象有在重新渲染html的過程中會復用原來相同的vue對象,所以導致會導致selcet對象錯位。解決方案:將每個select對象打上一個標簽key。雖然可能導致性能的下降,但是不會導致錯誤。

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

寻甸| 吴江市| 宜君县| 邯郸市| 兴隆县| 噶尔县| 灌阳县| 鄂托克前旗| 禄劝| 长岛县| 西盟| 林口县| 双牌县| 托克托县| 文昌市| 城固县| 泰兴市| 黎川县| 五指山市| 抚顺市| 呼伦贝尔市| 辽阳市| 蚌埠市| 上饶市| 军事| 伊吾县| 千阳县| 大竹县| 靖安县| 宁阳县| 隆化县| 井研县| 黑龙江省| 尖扎县| 姚安县| 天台县| 玛多县| 抚远县| 安化县| 铁岭县| 玉山县|