[Vuejs]-Vue.js router transition slide

0👍

I found this problem

This was a problem with the order.

Fixed the Z-index value for the incoming element

.slide-fade-enter, .slide-fade-enter-to, .slide-fade-enter-active{
  position: absolute;
  transform: translateX(100%);
  z-index: -100;

}

Leave a comment