Multiple page timelines
Sometimes you just need that page transition to be different every time. To achieve this you can create multiple timelines for your page transitions. Here I'll demo a simple example of page transitions being based on route changes.
Note: Make sure your vue skeleton project is all set up and ready for page transitioning.
Create the pages
Open up the terminal in the same directory as the package.json and create the following pages:
sg transition-page AboutPagesg transition-page ContactPageAfter the pages have ben generated it's time to open up the src/data/enum/RoutePaths.js and add the new paths
const RoutePaths = {
HOME: '/',
ABOUT: '/about',
CONTACT: '/contact',
};
export default RoutePaths;