Vue動態組件和異步組件

動態組件

若是咱們打算在一個地方根據不一樣的狀態引用不一樣的組件的話,好比tab頁,那麼Vue給咱們提供動態組件。css

基本使用

Parent.vuehtml

<template>
<div>
    <el-button-group>
        <el-button v-for='(btn, index) in btnGroup' 
                   :key="index" :class="{active:btn.disabled}"  
                   @click='change(index)'>{{btn.name}}
        </el-button>
    </el-button-group>
    <div>
        <component :is='currentCom'></component>
    </div>
</div>
</template>
<script>
import Childs1 from './Childs1'
import Childs2 from './Childs2'
import Childs3 from './Childs3'
import Childs4 from './Childs4'

export default {
    name:'Parent',
    components:{
        Childs1,
        Childs2,
        Childs3,
        Childs4
    },
   data() {
    return {
        btnGroup: [
            {name: 'Childs1', disabled: true},
            {name: 'Childs2', disabled: false},
            {name: 'Childs3', disabled: false},
            {name: 'Childs4', disabled: false},
        ],
        currentCom:'Childs1'
        
    }
  },
  methods:  {
      change(index){

          let pre = Number(this.currentCom[this.currentCom.length -1]);
          this.btnGroup[pre -1].disabled = false;
          this.btnGroup[index].disabled = true;
          this.currentCom = 'Childs' + (index + 1);
          
      }
  }
}
</script>
<style scoped>
.active{
    background-color: red;
}
</style>

運行結果以下圖:
動態組件vue

當咱們點擊不一樣的按鈕時,下面會切換不一樣的組件。實現動態組件的加載。is 的值能夠是一個已經註冊的組件的名字或者一個組件的選對象。當咱們點擊按鈕時,這個按鈕的 disabledtrue 而後咱們將給這個按鈕一個active 的css類,同時改變 currentCom 的值vue-router

keep-alive:動態組件的緩存

若是咱們須要頻繁的切換頁面,每次都是在組件的建立和銷燬的狀態間切換,這無疑增大了性能的開銷。那麼咱們要怎麼優化呢?
Vue提供了動態組件的 緩存keep-alive 會在切換組件的時候緩存當前組件的狀態,等到再次進入這個組件,不須要從新建立組件,只須要從前面的緩存中讀取並渲染。緩存

Parent.vue(其他地方代碼和上面同樣)異步

<template>
<div>
    <el-button-group class='btn-group'>
        <el-button v-for='(btn, index) in btnGroup' 
                   :key="index" :class="{active:btn.disabled}"  
                   @click='change(index)'>
        {{btn.name}}
        </el-button>
    </el-button-group>
    <div style='padding-top:100px;'>
    <keep-alive>
            <component :is='currentCom'></component>
    </keep-alive>
    </div>
</div>
</template>
<style scoped>
.btn-group{
    position:fixed;
}
.active{
    background-color: red;
}
</style>

Childs1.vueasync

<template>
    <div>
        {{title}}
        <button @click='change'>點我+1</button>
   </div>
</template>
<script>
export default {    
    name:'Childs1', 
    data(){
        return{
            title: 1
        }
    },
    methods:{
        change(){
            this.title += 1;
        }
    },
     mounted(){
        console.log('child1 mounted');
        
    }
}
</script>

Childs2.vueide

<template>
    <div>
        Childs2
    </div>
</template>
<script>
export default {
    name:'Childs2',
    mounted(){
        console.log('child2 mounted');
        
    }
}
</script>

運行結果以下圖:
動態組件keep-alive
控制檯效果 '函數

對比:若是咱們將<keep-alive></keep-alive>去掉,運行結果以下圖:性能

圖片描述
圖片描述

前一組圖片在切換組件的時候,title從1加到3,而後等下次再切換回來的時候,title仍是停留在3,從控制檯能夠看出,Childs1.vue這個組件的mounted的鉤子函數只有一次。後一組圖片,title一開始加到3,下一次進入這個組件的時候title又從1開始,控制檯圖片也顯示這個組件經歷個了屢次鉤子函數,說明組件是銷燬重建的。

tips:由於緩存的組件只須要創建一次,因此若是咱們要在每次進入組件的鉤子函數裏面作相應的操做的時候,會出現問題,因此請明確咱們使用的場景,避免出現bug

異步組件

異步組件存在的意義在於加載一個體量很大的頁面時,若是咱們不設置加載的優先級的話,那麼可能頁面在加載視頻等信息的時候會很是佔用時間,而後主要信息就會阻塞在後面在加載。這對用戶來講無疑不是一個不好的體驗。可是若是咱們設置加載的順序,那麼咱們能夠優先那些最重要的信息優先顯示,優化了整個項目。通常來講咱們是將加載組件和 路由vue-router)配合在一塊兒使用,因此這裏我就不細講了,具體學習能夠參考官網來進行學習。

相關文章
相關標籤/搜索