[Vuejs]-Why is my footer blocking the page`s conrent

1👍

Second to what the comment above says. We need a bit more to assist you.

You could play with the Z-Index based on scroll, but I would recommend changing the positioning.

Ex

.footer {
  position: absolute;
  bottom: 0;
  left:0
}

or

.footer{
  position: relative:
  bottom: 0;
  left:0
}

Leave a comment