Vue动态组件实例解析
网络编程 2021-07-04 18:33www.168986.cn编程入门
让多个组件使用同一个挂载点,并动态切换,这就是动态组件。这篇文章主要介绍了Vue动态组件 ,需要的朋友可以参考下
前面的话
让多个组件使用同一个挂载点,并动态切换,这就是动态组件。本文将详细介绍Vue动态组件
概述
通过使用保留的 <ponent>
元素,动态地绑定到它的 is 特性,可以实现动态组件
<div id="example"> <button @click="change">切换页面</button> <ponent :is="currentView"></ponent> </div> <script> var home = {template:'<div>我是主页</div>'}; var post = {template:'<div>我是提交页</div>'}; var archive = {template:'<div>我是存档页</div>'}; new Vue({ el: '#example', ponents: { home, post, archive, }, data:{ index:0, arr:['home','post','archive'], }, puted:{ currentView(){ return this.arr[this.index]; } }, methods:{ change(){ this.index = (++this.index)%3; } } }) </script>
也可以直接绑定到组件对象上
<div id="example"> <button @click="change">切换页面</button> <ponent :is="currentView"></ponent> </div> <script> new Vue({ el: '#example', data:{ index:0, arr:[ {template:`<div>我是主页</div>`}, {template:`<div>我是提交页</div>`}, {template:`<div>我是存档页</div>`} ], }, puted:{ 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> <ponent :is="currentView"></ponent> </keep-alive> </div> <script> new Vue({ el: '#example', data:{ index:0, arr:[ {template:`<div>我是主页</div>`}, {template:`<div>我是提交页</div>`}, {template:`<div>我是存档页</div>`} ], }, puted:{ 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', ponents:{ home:{template:`<div>我是主页</div>`}, posts:{template:`<div>我是提交页</div>`}, archive:{template:`<div>我是存档页</div>`}, }, data:{ index:0, }, methods:{ change(){ let len = Object.keys(this.$options.ponents).length; this.index = (++this.index)%len; } } }) </script>
【activated 和 deactivated】
activated 和 deactivated 在 <keep-alive> 树内的所有嵌套组件中触发
<div id="example"> <button @click="change">切换页面</button> <keep-alive> <ponent :is="currentView" @pass-data="getData"></ponent> </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>`} ], }, puted:{ 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"> <ponent :is="view"></ponent> </keep-alive> <!-- 正则表达式 (使用 v-bind) --> <keep-alive :include="/a|b/"> <ponent :is="view"></ponent> </keep-alive> <!-- Array (use v-bind) --> <keep-alive :include="['a', 'b']"> <ponent :is="view"></ponent> </keep-alive>
匹配检查组件自身的 name 选项,如果 name 选项不可用,则匹配它的局部注册名称(父组件 ponents 选项的键值)。匿名组件不能被匹配
<keep-alive include="home,archive"> <ponent :is="currentView"></ponent> </keep-alive>
上面的代码,表示只缓存home和archive,不缓存posts
<div id="example"> <button @click="change">切换页面</button> <keep-alive include="home,archive"> <ponent :is="currentView"></ponent> </keep-alive> </div> <script src="https://unpkg./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>`} ], }, puted:{ currentView(){ return this.arr[this.index]; } }, methods:{ change(){ var len = this.arr.length; this.index = (++this.index)% len; }, } }) </script>
以上所述是长沙网络推广给大家介绍的Vue动态组件实例解析,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,长沙网络推广会及时回复大家的!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程