v-for列表实现选项卡切换进阶版

Posted eliwen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了v-for列表实现选项卡切换进阶版相关的知识,希望对你有一定的参考价值。

<div id="card">
    <div class="title">
        <span @click="num=key" :class="change(key)" v-for="title,key in title_list">{{title}}</span>
    </div>
    <div class="content">
        <span class="list" :class="change(key,‘active‘)" v-for="content,key in content_list">{{content}}</span>
    </div>
</div>

<script脚本代码>
    var card = new Vue({
        el:"#card",
        data:{
            num: 0,
            title_list:[
                "国内新闻",
                "国际新闻",
                "银河新闻"
            ],
            content_list:[
                "国内新闻列表",
                "国际新闻列表",
                "银河新闻列表"
            ]
        },
        methods:{
            change(data,style=‘current‘){
                if(this.num==data){
                    return style;
                }
            }
        }
    });
</script脚本代码>

  

这里要自己添加style样式,可以参考以上切换选项卡的文章里的样式配置

以上是关于v-for列表实现选项卡切换进阶版的主要内容,如果未能解决你的问题,请参考以下文章

Android选项卡片段不调用OnCreateView从tab2切换到tab1

相同的片段与不同选项卡上的列表视图

切换到片段选项卡主机中的选项卡时查看寻呼机丢失其内容

慕课编程题JS选项卡切换

以编程方式使用选项卡更改片段的选项卡索引

IllegalArgumentException:快速切换 ActionBar 选项卡时没有找到片段 id 的视图