vue循环渲染不同样式

html

css

*{
                padding: 0;margin: 0;
            }
            .box{
                height: 40px;
                background: cyan;
            }
            .nav{
                line-height: 40px;
                display: inline-block;
                margin-left: 100px;
                cursor: pointer;
            }
            .red{
                color: red;
            }

js

/前提是必须引入vuejs哦!
var vm = new Vue({
            el:"#wrap",
            data:{
                navLists:[
                    {
                        "text":"首页"                     
                    },
                    {
                        "text":"组件"                     
                    },
                    {
                        "text":"API"                        
                    },
                    {
                        "text":"我们"                     
                    }
                ],
                changeRed:0
            },
            methods:{
                reds:function(index){
                    this.changeRed = index;
                }
            }
        });

你可能感兴趣的:(vue循环渲染不同样式)