//原生js
//this指向当前元素
在onclick = "fn(this)"

//Vue中使用方法
v-on:click="fn($event)"

methods: {
    fn: function (e) {
        // 当前元素
        e.currentTarget; 
    }
}


vue动态绑定样式利用三元运算符

//在需要的html标签上
:style="(currentGames.list[2].id==3)?'display:none':'display:flex'"

 

Logo

前往低代码交流专区

更多推荐