美文网首页
uni-app 点击切换class

uni-app 点击切换class

作者: 安徒生1997 | 来源:发表于2020-12-14 11:34 被阅读0次

<view class="footer">

<view class="footer_item " @click="change_nav(index)" v-for="(item,index) in footer_nav" :key="index">

    <image :src="add_class==index?item.select_icon:item.icon" mode="" v-if="index==2"></image>

    <view :class="{'active':add_class==index}">{{item.name}}</view>

</view>

</view>

export default {

    data() {

        return {

            add_class:'',

        };

    },

    methods:{

        change_nav(index){

        this.add_class=index

    },

}

相关文章

网友评论

      本文标题:uni-app 点击切换class

      本文链接:https://www.haomeiwen.com/subject/yghvgktx.html