Now when user accesses unknown page, we do nothing, and show blank view, lets add a placeholder there
AI Suggestion
To show an error page when accessing an undefined route in Vue Router, you can set up a catch-all route that directs users to a "Not Found" component. Create a route with the path '*' and set its component to your error page to handle 404 errors effectively
Now when user accesses unknown page, we do nothing, and show blank view, lets add a placeholder there
AI Suggestion