Releases: headmandev/vue3-side-panel
Releases · headmandev/vue3-side-panel
v.1.3.0
Events opened
and closed
added in version 1.3.0:
Here is an example of how to use it:
<VueSidePanel
v-model="isOpened"
@opened="() => console.log('@opened event: transition stopped and modal is opened')"
@closed="() => console.log('@closed event: transition stopped and modal is closed')"
>
...
</VueSidePanel>
v.1.2.0
Now we have scroll blocking via setTimeout because of incorrectly calculation the scrollbar gap
(body-scroll-lock issue)
Related to this bug problem has been described here.
willmcpo/body-scroll-lock#239
v1.1.1
Bug with nested modals and body scrolling is fixed (Nested modal closing caused enabling body scroll)
v1.1.0
-
The <Transtion> component is now used for animation.
-
rerender prop to render when opened
-
transition-name prop to override the default animation
v1.0.3
- Bug with default value for the side prop is fixed. Now it is 'right' as expected