欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue 点击当前元素添加class 去掉兄弟的class

程序员文章站 2022-04-04 17:52:50
点击当前标签给其添加class,兄弟标签class删除 演示地址: https://xibushijie.github.io/static/addClass.html ......

点击当前标签给其添加class,兄弟标签class删除

vue 点击当前元素添加class 去掉兄弟的class

演示地址: https://xibushijie.github.io/static/addClass.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>vue 点击当前元素添加class 去掉兄弟的class</title>
    <script src="../js/vue.js"></script>
</head>
<style type="text/css">
    .blue {color: #2175bc;}
</style>
<body>
    <div id="app">
      <ul>
        <li v-for="(todo, index) in todos" v-on:click="addClass(index)" v-bind:class="{ blue:index==current}">
            {{ todo.text }}
        </li>
    </ul>
</div>
<script>
new Vue({
    el: '#app',
        data: {
        current:0,
            todos: [
            { text: '选项一' },
            { text: '选项二' },
            { text: '选项三' }
        ]
    },
    methods:{
        addClass:function(index){
            this.current=index;
        }
    }
})
</script>
</body>
</html>