vue如何使用动态组件实现TAB切换效果
本篇文章和大家了解一下vue如何使用动态组件实现TAB切换效果。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
一、方法1:使用Vant组件库的tab组件
Vant 2 – Mobile UIponents built on Vue
二、 方法2:手动创建tab切换效果
1.ponents文件夹下创建切换的.vue页面、引入使用
import one from ".ponents/one"; import two from ".ponents/two"; import three from ".ponents/three"; import four from ".ponents/four"; components: { one, two, three, four, },
2.布局:上面放tab点击的标签,下面放组件呈现对应内容
// 然后使用v-for循环出来呈现 <template> <div id="app"> <div class="top"> <!-- 放置tab点击标签 --> <div class="crad" :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click="whichIndex = index"> {{ itemponentName }} </div> </div> <div class="bottom"> <!-- 放置动态组件... --> <!-- keep-alive缓存组件,这样的话,组件就不会被销毁,DOM就不会被重新渲染, 浏览器也就不会回流和重绘,就可以优化性能。不使用的话页面加载就会慢一点 --> <keep-alive> <ponent :is="ponentId"><ponent> </keep-alive> </div> </div> </template>
3.写好上面的tab点击标签,定义数据修改样式
// 首先我们在data中定义数组cardArr存放点击tab的数据 data() { return { whichIndex: 0, cardArr: [ {  ponentName: "动态组件一",  ponentId: "one", },{  ponentName: "动态组件二",  ponentId: "two", },{  ponentName: "动态组件三",  ponentId: "three", },{  ponentName: "动态组件四",  ponentId: "four", }, ], }; },
// 又因为需要有高亮状态样式:默认索引0高亮 .highLight { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); transform: translate3d(0, -1px, 0); }
三、完整代码
<template> <div id="app"> <div class="top"> <div class="crad" :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click=" whichIndex = index;  ponentId = itemponentId; " > {{ itemponentName }} </div> </div> <div class="bottom"> <keep-alive> <ponent :is="ponentId"><ponent> </keep-alive> </div> </div> </template> <script> import one from ".ponents/one"; import two from ".ponents/two"; import three from ".ponents/three"; import four from ".ponents/four"; export default {  ponents: { one, two, three, four, }, data() { return { whichIndex: 0,  ponentId: "one", cardArr: [ {  ponentName: "动态组件一",  ponentId: "one", }, {  ponentName: "动态组件二",  ponentId: "two", }, {  ponentName: "动态组件三",  ponentId: "three", }, {  ponentName: "动态组件四",  ponentId: "four", }, ], }; }, }; </script> <style lang="less" scoped> #app { width: 100%; height: 100vh; box-sizing: border-box; padding: 50px; .top { width: 100%; height: 80px; display: flex; justify-content: space-around; .crad { width: 20%; height: 80px; line-height: 80px; text-align: center; background-color: #fff; border: 1px solid #e9e9e9; } .highLight { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); transform: translate3d(0, -1px, 0); } } .bottom { margin-top: 20px; width: 100%; height: calc(100% - 100px); border: 3px solid pink; display: flex; justify-content: center; align-items: center; } } </style>
以上就是vue如何使用动态组件实现TAB切换效果的简略介绍,当然详细使用上面的不同还得要大家自己使用过才领会。如果想了解更多,欢迎关注测速网www.inhv.cn行业资讯频道哦!