I am following this library for making slick.
I want to disable the click methods for arrow-left and arrow-right button, while keeping the arrow here, so that it will not change slide or anything. How to do it?
Codesandbox:
https://codesandbox.io/s/naughty-matan-55c76?file=/src/components/HelloWorld.vue

You can add
@click.stopto stop event propagation. See more about Event Modifiers.Updates
To disable click event from button (not only from img). You can do it with css:
But why not we just add
@click.stopto button instead of img?The problem is here:
First it checks if you have passed the prevArrow slot, if so they will use your slot. If not, they will use the default button.
And either way, they will combine their default props/event handlers which include the 'click' event, meaning that your click will only be overridden.