登录 注册 切换tab

断了今生、忘了曾经 提交于 2020-01-21 01:36:35
                <div style="background-color: #2e2828;">
                    <ul class="tab">
                        <li v-for="item in menuTab" :key="item.id" :class="{'current':item.current}" @click="togglemneu(item)">{{item.txt}}</li>
                    </ul>
                </div>
    data(){
        return{
            menuTab:[
                {txt:'登录',current:true},
                {txt:'注册',current:false}
            ]
        }
    },
    methods:{
        togglemneu(data){
            this.menuTab.forEach(Element=>{
                Element.current = false
            });
            data.current = true
        }
    }
.tab{
    text-align: center;
}
.tab li{
    display: inline-block;
    width: 88px;
    line-height: 36px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 2px;
}
.current{
    background-color: rgb(3, 3, 92);
}

效果如下:

点击切换

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!