Hello. In laravel I created Middleware and hung it on several url and when a regular user goes to these url, then redirect it, respectively, on page 404. I wrote in ruts like this: Route::get('/404', function(){return view('404'}); And how to create such a page in vuejs? What do you need to do for this?

    1 answer 1

    In routs, we write { path: '/404', component: NotFound } Next, create the NotFound component.