vue使用动态组件实现TAB切换效果
网络编程 2021-07-04 14:07www.168986.cn编程入门
这篇文章主要介绍了vue使用动态组件实现TAB切换效果的方法,帮助大家更好的理解和学习使用vue框架,感兴趣的朋友可以了解下
问题描述
tab切换的场景在开发中会经常用到。当需要实现这种效果的时候,我们常常会想到狼蚁网站SEO优化的方式去实现这个效果。
- 方式一 使用display:none;去控制dom元素的显示与隐藏。从而实现,两个tab的显示与隐藏。不过如果有三四个tab要切换的话,这种方式就不可取了。
- 方式二 使用vue中的指令v-if或者v-show实现。这种方式可以实现,不过代码写的不优雅。试想一个.vue文件中出现一大把v-if是什么样的效果?而且使用v-if还得声明很多的变量去做标识。所以不是十分好的的解决方案
- 方式三 使用elementui或者iview中的tab切换组件 这种方式也还行,不过有的时候需要/deep/改样式,就有点麻烦了。
笔者认为,使用vue的动态组件去实现tab的切换效果,会比较方便。
什么是vue的动态组件
vue的动态组件,本质上还是一个组件,组件通俗来说就是一块具有js逻辑的UI视图层。所谓动态组件就是我们可以根据一些条件去动态控制页面的某个地方具体显示那个组件。这样说就有点tab切换的味道了。
应用场景描述
需求效果图
其实很简单,就是一个tab切换的效果,实际开发中,tab的样式效果可能会稍微复杂点。
实现步骤
第一步(新建组件并引入注册)
在ponents文件夹下定义四个.vue文件,作为tab切换呈现的内容部分,引入既可使用。
新建
引入并注册
import one from "./ponents/one"; import two from "./ponents/two"; import three from "./ponents/three"; import four from "./ponents/four"; ponents: { one, two, three, four, },
第二步(布局,上面放tab点击的标签,狼蚁网站SEO优化放组件呈现对应内容)
<template> <div id="app"> <div class=""> <!-- 放置tab点击标签 --> </div> <div class="bottom"> <!-- 放置动态组件呈现对应内容 --> </div> </div> </template>
第三步(写好上面的tab点击标签)
// 我们在data中定义数组cardArr存放点击tab的数据 data() { return { whichIndex: 0, cardArr: [ { ponentName: "动态组件一", }, { ponentName: "动态组件二", }, { ponentName: "动态组件三", }, { ponentName: "动态组件四", }, ], }; }, // 然后使用v-for循环出来呈现 <template> <div id="app"> <div class=""> <div class="crad" :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click="whichIndex = index" > {{ item.ponentName }} </div> </div> <div class="bottom"> <!-- 放置动态组件... --> </div> </div> </template> // 又因为需要有高亮状态,所以初始我们就默认让索引为0的也就是第一个高亮,使用data中定义的whichIndex和:class实现 // 高亮样式 .highLight { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); transform: translate3d(0, -1px, 0); }
第四步(使用动态组件标签 <ponent/> )
// 动态组件标签<ponent/>有一个is属性,is的值为谁,就可以渲染谁, // 这里我们先用一个变量ponentId存起来,ponentId为谁,就呈现谁 <div class="bottom"> <ponent :is="ponentId"></ponent> </div> // 我们默认就让第一个第一个呈现吧,需要让cardList中的组件名和组件id对应上, // 所以data中应该修改成这样 data() { return { whichIndex: 0, ponentId: "one", // 值就是我们在ponents对象中注册的引入的组件的名字 cardArr: [ { ponentName: "动态组件一", ponentId: "one", // 要与之对应 }, { ponentName: "动态组件二", ponentId: "two", // 要与之对应 }, { ponentName: "动态组件三", ponentId: "three", // 要与之对应 }, { ponentName: "动态组件四", ponentId: "four", // 要与之对应 }, ], }; },
第五步(点击某个tab组件,就动态更改对应ponentId值即可)
<template> <div id="app"> <div class=""> <div class="crad" :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click=" whichIndex = index; ponentId = item.ponentId; " > <!-- @click在标签中可以写多个操作代码,以分号隔开即可 --> {{ item.ponentName }} </div> </div> <div class="bottom"> <!-- keep-alive缓存组件,这样的话,组件就不会被销毁,DOM就不会被重新渲染, 浏览器也就不会回流和重绘,就可以优化性能。不使用的话页面加载就会慢一点 --> <keep-alive> <ponent :is="ponentId"></ponent> </keep-alive> </div> </div> </template>
完整代码附上
<template> <div id="app"> <div class=""> <div class="crad" :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click=" whichIndex = index; ponentId = item.ponentId; " > {{ item.ponentName }} </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; . { 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-: 20px; width: 100%; height: calc(100% - 100px); border: 3px solid pink; display: flex; justify-content: center; align-items: center; } } </style>
以上就是vue使用动态组件实现TAB切换效果的详细内容,更多关于vue 动态组件实现TAB切换效果的资料请关注狼蚁SEO其它相关文章!
上一篇:vue使用swiper插件实现轮播图的示例
下一篇:React合成事件详解
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程