Page flows
The page flow is set in the beforeCreate
method of the PageTransitionComponent
. All pages have a normal flow by default. You can change the flow for a page by overwriting the this.flow
import { FlowType } from 'vue-transition-component'
...
created() {
this.flow = FlowType.NORMAL
},
...
Normal flows
By default all pages have a normal flow, this can be seen like this:

Transition out triggered
Wait for transition out to be complete
Destroy old page
Change the route
Create new page
Transition in new page
Cross flows
In a cross flow the transition out of the current page and the transition in of the new page occur at the same time.

Transition out old page triggered
Destroy old page
Change the route
Create new page
Transition in new page
Last updated