[Vuejs]-Vue bootstrap toaster instantly vanishing / hiding itself

4👍

If you are using bootstrap 5 just add this css

.toast:not(.show) {
   display: block;
}

2👍

I think you don’t have the appropriate version of the bootstrap css.

e.g 4.5.3 bootstrap css
and after load the vue bootstrap

Had the same issue, and this solved it

Leave a comment