I want to create an admin project, but now I have some questions about routing method. There are Convention Routing(like next.js) and Configuring Routing(like umijs, vue-element-admin), I don't know which one I should use. Can you tell me the shortcoming and advantage about them?
I try read docs and google, but there is little article about this topic.
In simple terms:
Convention Routing (Automated Routing) is a quicker and easier method of defining routes based on a set of conventions.
Example:
Next.jsConfiguring Routing (Manual Routing) offers greater control and flexibility over routing behaviour but can take longer and be more difficult to set up.
Example:
Umi.js