Can you use a single page in vue multi-page applications? for example, the list page needs to jump to the details page, so you can only add one more page.

vue what I do now is a multi-page application, but each page has a details page, so can I do that with a single page? have you ever seen a god of similar problems?

Mar.19,2021

it's not impossible, but don't do it.
you can treat each page as a separate application (multi-page application). The whole system can also be regarded as an application, and the page is a sub-module (single-page application).
if you put it all together, you can't fill in this hole, and you don't even know where the route is going.


according to our practice, it is feasible that the system forms a multi-page application according to functional modules, and each module has a spa page with lists, details, settings, and so on. Because I didn't use ssr, I didn't encounter the problem mentioned by the god upstairs.

clipboard.png

Menu