You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Share app context: Now you can use your plugins and global apps inside custom toast components. closes #162 through #290
🔧 Bug fixes
Fix RTL margins in firefox: Firefox does not invert margin: auto when in direction: rtl like other browsers do. That led to broken UI. closes #179 through #285
Fix Nuxt composition API: It was not possible to use useToast with Nuxt. Now you can by importing from vue-toastification/composition/nuxt. closes #180 through #287
Fix RTL margins in firefox: Firefox does not invert margin: auto when in direction: rtl like other browsers do. That led to broken UI. closes #179 through #286
Disable runtime container prop validation: Runtime validation for the container prop is not possible since it requires a direct instanceof comparison with HTMLElement. resolves #161 (838dc42)
Toast interfaces are global by default: Toasts created with the app.use(Toast) plugin will be bound to a global event listener by default, meaning that all that is needed to use toasts outside of components is to call useToast (#152 )