Vue中传递event

Vue中传递event

在html中的代码如下

  • 在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

    你可能感兴趣的:(前端)