vue-tab栏

Posted theshyer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-tab栏相关的知识,希望对你有一定的参考价值。

技术图片

 

 

<template>
    <div>
        <ul>
            <li @click="change(index)" :key=‘item.id‘ v-for="(item,index) in list">{{item.title}}</li>
        </ul>
        <div class="div-class">
            <img v-show="index==currentId" :style=‘getImgStyle()‘ :key="item.id" v-for="(item,index) in list" :src="item.path">
        </div>
    </div>
</template>

<script>
    export default {
        name: "HelloWorld",
        props:{
                        
        },
        data() {
            return {
                currentId : 0,
                isImg_currnt : false,
                list:[{
                    id:1,
                    title:apple,
                    path:require(../img/mmexport1578014408066.jpg)
                },{
                    id:2,
                    title:orange,
                    path:require(../img/mmexport1578014452372.jpg)
                },{
                    id:3,
                    title:lemon,
                    path:require(../img/mmexport1578014461314.jpg)
                } 
                ]
            };
        },
        methods: {
            change:function(index){
                this.currentId = index
            },
            getImgStyle:function(){
                return{
                    paddingLeft:"500px",
                    width:"200px",
                    height:"400px",
                    display:"block"
                }
            }
        }
    };
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
    li{
        display: inline-block;
        width: 100px;
        height: 20px;
        border:1px solid blue
    }
    .img-currnt{
        display:block
    }
    img{
        display:none
    }
</style>

以上是关于vue-tab栏的主要内容,如果未能解决你的问题,请参考以下文章

vue-tab切换

操作栏标签片段中的片段?

仅在一个片段中隐藏状态栏并在其他片段中显示

用片段替换时操作栏向下移动

使用底部导航栏防止片段刷新

我可以在片段中构建操作栏吗?