阻止冒泡 $event.stopPropagation()

阻止默认行为 $event.preventDefault()

    stop($event){
        $event.stopPropagation();
        $event.preventDefault();
    }