[Vuejs]-V-snackbar display on top of other components

3👍

The v-snackbar by default has a fixed position with a z-index: 1000. With absolute property set, the z-index become 1. So, if there is no absolute need for the absolute prop, remove it and it should solve the problem.

Leave a comment