kadiryazici / bottom-sheet-vue3

Bottom sheet component for Vue3.
https://kadiryazici.github.io/bottom-sheet-vue3/
MIT License
29 stars 6 forks source link

Feature Request: An option to remove transition animation #8

Closed hasanparasteh closed 1 year ago

hasanparasteh commented 1 year ago

Hi,

I was reviewing your latest changes and it's going good. Can you consider adding an option to disable pop up animation for bottom-sheet?

hasanparasteh commented 1 year ago

Now you can just pass empty arrow functions to disable or customize animation

example:

<Sheet 
    v-model:visible="visible" 
    :handle-animation-enter="() => { }" 
    :handle-animation-leave="() => { }"
>
     a sheet without animation
</Sheet>