Vue实现选项卡tab切换制作
更新时间:2022年03月04日 11:09:07 作者:光头和尚111
这篇文章主要为大家详细介绍了Vue实现选项卡tab切换制作,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Vue实现选项卡tab切换制作代码,供大家参考,具体内容如下
1.主要的实现功能如下:(点击进行切换,这里我不做太多的样式处理了,主要看功能)
2.话不多说:主要看代码实现
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>选项卡制作</title> <!--js文件记得用自己的--> <script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script> </head> <body> <div id="xuanxiang" style="text-align: center;margin: 0 auto;width: 500px;"> <div> <ul style="list-style-type: none" > <li style="float: left; width: 130px; display: block; margin-top: 40px; margin-right: 10px; margin-bottom: 0px; background-color: aquamarine; line-height: 30px; border-radius: 15px 15px 0 0; color: blueviolet; :hover{background-color: blueviolet; color: aliceblue;}" v-for="(item,index) in arr" @click="changes(index)">{{ item.xuan }}</li> </ul> </div> <div style="text-align: center;margin: 0 auto;float: left;margin-top: 80px;background-color: antiquewhite;width: 500px;text-align: center;height: 100px; margin-top: 0px; vertical-align: middle;display: table-cell;"> <p>{{ valuessss }}</p> </div> </div> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
最新评论