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

溫馨提示×

溫馨提示×

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

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

Vue動態組件實例解析

發布時間:2020-09-28 19:26:47 來源:腳本之家 閱讀:118 作者:小火柴的藍色理想 欄目:web開發

前面的話

  讓多個組件使用同一個掛載點,并動態切換,這就是動態組件。本文將詳細介紹Vue動態組件

概述

  通過使用保留的 <component> 元素,動態地綁定到它的 is 特性,可以實現動態組件

<div id="example">
 <button @click="change">切換頁面</button>
 <component :is="currentView"></component>
</div>
<script>
var home = {template:'<div>我是主頁</div>'};
var post = {template:'<div>我是提交頁</div>'};
var archive = {template:'<div>我是存檔頁</div>'};
new Vue({
 el: '#example',
 components: {
  home,
  post,
  archive,
 },
 data:{
  index:0,
  arr:['home','post','archive'],
 },
 computed:{
  currentView(){
    return this.arr[this.index];
  }
 },
 methods:{
  change(){
   this.index = (++this.index)%3;
  }
 }
})
</script>

  也可以直接綁定到組件對象上

<div id="example">
 <button @click="change">切換頁面</button>
 <component :is="currentView"></component>
</div>
<script>
new Vue({
 el: '#example',
 data:{
  index:0,
  arr:[
   {template:`<div>我是主頁</div>`},
   {template:`<div>我是提交頁</div>`},
   {template:`<div>我是存檔頁</div>`}
  ],
 },
 computed:{
  currentView(){
    return this.arr[this.index];
  }
 },
 methods:{
  change(){
   this.index = (++this.index)%3;
  }
 }
})
</script>

緩存 

  <keep-alive> 包裹動態組件時,會緩存不活動的組件實例,而不是銷毀它們。和 <transition> 相似,<keep-alive> 是一個抽象組件:它自身不會渲染一個 DOM 元素,也不會出現在父組件鏈中

【基礎用法】

<div id="example">
 <button @click="change">切換頁面</button>
 <keep-alive>
  <component :is="currentView"></component> 
 </keep-alive>
</div>

<script>
new Vue({
 el: '#example',
 data:{
  index:0,
  arr:[
   {template:`<div>我是主頁</div>`},
   {template:`<div>我是提交頁</div>`},
   {template:`<div>我是存檔頁</div>`}
  ],
 },
 computed:{
  currentView(){
    return this.arr[this.index];
  }
 },
 methods:{
  change(){
   let len = this.arr.length;
   this.index = (++this.index)% len;
  }
 }
})
</script>

【條件判斷】

  如果有多個條件性的子元素,<keep-alive> 要求同時只有一個子元素被渲染

<div id="example">
 <button @click="change">切換頁面</button>
 <keep-alive>
  <home v-if="index===0"></home>
  <posts v-else-if="index===1"></posts>
  <archive v-else></archive> 
 </keep-alive>
</div>

<script>
new Vue({
 el: '#example',
 components:{
  home:{template:`<div>我是主頁</div>`},
  posts:{template:`<div>我是提交頁</div>`},
  archive:{template:`<div>我是存檔頁</div>`},
 },
 data:{
  index:0,
 },
 methods:{
  change(){
   let len = Object.keys(this.$options.components).length;
   this.index = (++this.index)%len;
  }
 }
})
</script>

【activated 和 deactivated】

  activated 和 deactivated 在 <keep-alive> 樹內的所有嵌套組件中觸發

<div id="example">
 <button @click="change">切換頁面</button>
 <keep-alive>
  <component :is="currentView" @pass-data="getData"></component> 
 </keep-alive>
 <p>{{msg}}</p>
</div>

<script>
new Vue({
 el: '#example',
 data:{
  index:0,
  msg:'',  
  arr:[
   { 
    template:`<div>我是主頁</div>`,
    activated(){
     this.$emit('pass-data','主頁被添加');
    },
    deactivated(){
     this.$emit('pass-data','主頁被移除');
    },    
   },
   {template:`<div>我是提交頁</div>`},
   {template:`<div>我是存檔頁</div>`}
  ],
 },
 computed:{
  currentView(){
    return this.arr[this.index];
  }
 },
 methods:{
  change(){
   var len = this.arr.length;
   this.index = (++this.index)% len;
  },
  getData(value){
   this.msg = value;
   setTimeout(()=>{
    this.msg = '';
   },500)
  }
 }
})
</script>

【include和exclude】

  include 和 exclude 屬性允許組件有條件地緩存。二者都可以用逗號分隔字符串、正則表達式或一個數組來表示

<!-- 逗號分隔字符串 -->
<keep-alive include="a,b">
 <component :is="view"></component>
</keep-alive>
<!-- 正則表達式 (使用 v-bind) -->
<keep-alive :include="/a|b/">
 <component :is="view"></component>
</keep-alive>
<!-- Array (use v-bind) -->
<keep-alive :include="['a', 'b']">
 <component :is="view"></component>
</keep-alive>

  匹配首先檢查組件自身的 name 選項,如果 name 選項不可用,則匹配它的局部注冊名稱(父組件 components 選項的鍵值)。匿名組件不能被匹配

 <keep-alive include="home,archive">
  <component :is="currentView"></component> 
 </keep-alive>

  上面的代碼,表示只緩存home和archive,不緩存posts

<div id="example">
 <button @click="change">切換頁面</button>
 <keep-alive include="home,archive">
  <component :is="currentView"></component> 
 </keep-alive>
</div>
<script src="https://unpkg.com/vue"></script>
<script>
new Vue({
 el: '#example',
 data:{
  index:0,  
  arr:[
   {name:'home',template:`<div>我是主頁</div>`},
   {name:'posts',template:`<div>我是提交頁</div>`},
   {name:'archive',template:`<div>我是存檔頁</div>`}
  ],
 },
 computed:{
  currentView(){
    return this.arr[this.index];
  }
 },
 methods:{
  change(){
   var len = this.arr.length;
   this.index = (++this.index)% len;
  },
 }
})
</script>

總結

以上所述是小編給大家介紹的Vue動態組件實例解析,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!

向AI問一下細節

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

AI

四川省| 林甸县| 博野县| 西峡县| 台南市| 威远县| 封开县| 桃园市| 武夷山市| 板桥市| 饶河县| 新龙县| 平湖市| 丹棱县| 西乡县| 新昌县| 绩溪县| 利川市| 万山特区| 镇远县| 古蔺县| 绥江县| 汕尾市| 深圳市| 广州市| 三亚市| 安塞县| 美姑县| 五河县| 卓资县| 交口县| 旬邑县| 望城县| 怀来县| 凯里市| 昭通市| 黄石市| 正宁县| 沙河市| 千阳县| 万荣县|