溫馨提示×

溫馨提示×

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

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

vue實現(xiàn)按需加載組件及異步組件功能

發(fā)布時間:2020-10-01 04:21:13 來源:腳本之家 閱讀:223 作者:浚琦 欄目:web開發(fā)

說實話,我一開始也不知道什么叫按需加載組件,組件還可以按需加載???后來知道了

學(xué)不完啊...沒關(guān)系,看我的

按需加載組件,或者異步組件,主要是應(yīng)用了component的 is 屬性

template中的代碼:

這里的每一個按鈕,都要顯示不同的組件,所以我讓他們使用了同一個方法名

 <template slot-scope="scope">
    <el-button
    type="text"
    size="mini"
    @click="handleSchedule('CustomerInfoSchedule', scope.row.customer_id)"
    >詳情</el-button>
    <el-button
    type="text"
    size="mini"
    @click="handleSchedule('VisitRecordSchedule', scope.row.customer_id)"
    >回訪</el-button>
    <el-button
    type="text"
    size="mini"
    @click="handleSchedule('AddCustomerSchedule',scope.row.customer_id)"
    >編輯</el-button>
    <el-button
    type="text"
    size="mini"
    @click="handleSchedule('AddPeopleSchedule', scope.row.customer_id)"
    >添加聯(lián)系人</el-button>
   </template>

 <component 
 :is="currentComponent" 
 :customer_id="customer_id" 
 @componentResult="componentResult"
 >
 </component>

script中的代碼:

這里的組件使用request按需引入,我使用的點擊事件,當(dāng)事件觸發(fā)的時候,引入對應(yīng)的組件

首先在data中聲明組件的屬性

 data() {
 return {
  currentComponent: "",
  customer_id:'',
 }
 }

然后注冊組件

這里的組件作為一個個方法,組件名是方法名,組件內(nèi)容是方法體,有幾個組件就寫幾個方法

components: {
  AddCustomerSchedule(resolve) {
  require(["../components/AddCustomer"], resolve);
  },
  AddPeopleSchedule(resolve) {
  require(["../components/AddPeople"], resolve);
  },
  CustomerInfoSchedule(resolve) {
  require(["../components/CustomerInfo"], resolve);
  },
  VisitRecordSchedule(resolve) {
  require(["../components/VisitRecord"], resolve);
  },
 },

定義的方法

// 這里直接接收name,然后相對應(yīng)的引入組件,同時傳值
 handleSchedule(name, id) {
  this.customer_id = id;
  this.currentComponent = name;
  },
 // 這是子組件觸發(fā)父組件返回回來的方法,因為我的組件都是彈出框
 // 所以在子組件關(guān)閉彈出框的時候,我讓this.currentComponent為空
 // 同時可以選擇性的刷新數(shù)據(jù)
  componentResult(type) {
  if (type == "upData") {
   this.getTableData();
  } else {
   this.currentComponent = "";
  }
  },

總結(jié)

以上所述是小編給大家介紹的vue實現(xiàn)按需加載組件及異步組件功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

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

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

AI