美文网首页
vue中默认传递event方法

vue中默认传递event方法

作者: 三月木头 | 来源:发表于2020-12-11 15:49 被阅读0次

    1.在vue中普通方法中默认带有event DOM事件

    
    <div class="percent-slider__dot--selected"
            :style="wrapperStyle"
            @touchstart="onButtonDown">
    </div>
    
    onButtonDown(event: Event) {
            event.preventDefault();
            this.onDragStart(event);
            window.addEventListener("touchmove", this.onDragging);
            window.addEventListener("touchend", this.onDragEnd);
            window.addEventListener("contextmenu", this.onDragEnd);
     }
    

    相关文章

      网友评论

          本文标题:vue中默认传递event方法

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