Route Transitions

Learn about the flow and the transitions of route in our application.

Route transition

Route transition is the process of changing from one route to another. The following table shows the analysis of route transitions:

Route

URL Segment

Matching Route Path

params

application

/

N/A

{}

admin

/admin

admin

{}

add

/admin/add

add

{}

edit

/admin/edit

:id

{id: 'any product_id'}

cart

/cart

/cart

{}

category

/category

:id

{id: 'category name'}

item

/category/item

:itemkey

{ic: 'item_key'}

not-found

/*

*

N/A

Route

...