亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

bootstrap中select插件怎么封裝成Vue2.0組件

發布時間:2022-04-27 10:56:32 來源:億速云 閱讀:204 作者:iii 欄目:大數據

本文小編為大家詳細介紹“bootstrap中select插件怎么封裝成Vue2.0組件”,內容詳細,步驟清晰,細節處理妥當,希望這篇“bootstrap中select插件怎么封裝成Vue2.0組件”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

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

新安县| 大冶市| 株洲县| 巴彦淖尔市| 托克逊县| 天水市| 英山县| 曲阳县| 开封市| 邹城市| 临清市| 都兰县| 正蓝旗| 华亭县| 鄂托克旗| 繁峙县| 遂昌县| 安塞县| 杭锦后旗| 郧西县| 文山县| 额敏县| 龙江县| 富阳市| 安顺市| 保康县| 新泰市| 寿宁县| 西丰县| 涿鹿县| 长阳| 沂源县| 东辽县| 岚皋县| 东兴市| 沅江市| 固安县| 扬州市| 上高县| 白水县| 收藏|