06-vue路由动画

html:

<transition name="haines">
      <router-view/>
</transition>

css:

.haines-enter-active,.haines-leave-active{
  transition :opacity .5s
}
.haines-enter,.haines-leave-to{
  opacity : 0
}

  

  

猜你喜欢

转载自www.cnblogs.com/ipoodle/p/11029607.html