Vue中传递event

在html中的代码如下

<li class="circle" listId="0" @click="listChoose($event)"></li>

在javascript中的代码如下

listChoose: function (event) {
      this.photoPosition = $(event.target).attr('listId')
      if (this.photoPosition === 5) {
        $('.next-icon').hide(1000)
      }
      $('.warp').animate({
        top: -this.photoPosition * 100 + '%'
      }, 1000)
    },

主要反应的是利用$event来传递event

Logo

前往低代码交流专区

更多推荐