时间:2021-05-26
一、实现两个组件间互相展示、互相隐藏
<!DOCTYPE html><html><head> <title>动态组件</title> <script type="text/javascript" src="./vue-dev.js"></script></head><body> <div id="app"> <child-one v-if="type=='child-one'" content="child-one"></child-one> <child-two v-if="type=='child-two'" content="child-two"></child-two> <button @click="handleChangeEvent">change</button> </div> <script type="text/javascript"> Vue.component('child-one', { props: ["content"], template: `<div>{{content}}</div>`, }); Vue.component('child-two', { props: ["content"], template: `<div>{{content}}</div>`, }) var vm = new Vue({ el: '#app', data(){ return{ type:'child-one' } }, methods:{ handleChangeEvent:function(){ this.type= this.type=="child-one" ? 'child-two':'child-one'; } } }) </script></body></html>页面效果图如下:
二、动态组件,简化页面代码
使用:父组件 dom标签使用 ,对组件名称进行绑定
<div id="app"> <!-- <child-one v-if="type=='child-one'" content="child-one"></child-one> <child-two v-if="type=='child-two'" content="child-two"></child-two> --> <!--动态组件标签component 利用is接收指定标签组件--> <component :is="type" :content="type"></component> <button @click="handleChangeEvent">change</button> </div>无论使用v-if还是components来使用动态组件的实现,都是在点击交互后,每一次页面效果的切换,会自动销毁前一个组件,再重新创建一个组件,页面则显示响应的内容, 这样的实现方式是比较消耗性能的
三、 v-show和v-once
使用v-show,则会只是隐藏在dom元素中,组件都会被创建。
在子组件中,加入v-once,当每次切换组件效果时,不再需要每次都经过创建-销毁的过程,而是在内存中直接取用上一次使用过的组件的内容
Vue.component('child-one',{ template:'<div v-once>child-one</div>' }) Vue.component('child-two',{ template:'<div v-once>child-two</div>' })使用v-once,可以有效提高静态内容的展示效率,提高性能
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了Vue动态组件与v-once指令的实现,分享给大家,具体如下:changeVue.component('child-one',{template:`c
本文实例讲述了vue动态组件和v-once指令。分享给大家供大家参考,具体如下:点击按钮时,自动切换两个组件,当点击按钮之后,会自动清除原来的组件,显示新的组件
官网:https://cn.vuejs.org/v2/guide/components.html1.Vue组件的介绍组件(Component)是Vue.js最强
除了默认设置的核心指令(v-model和v-show),Vue也允许注册自定义指令。在Vue里,代码复用的主要形式和抽象是组件。然而,有的情况下,仍然需要对
前提:1.会vue基础,以及vue的组件(官网:https://cn.vuejs.org/v2/guide/components.html)相关的基础。因为本文