Home > front end >  The login module page jump
The login module page jump

Time:12-12

The login module to realize the page jump to link routing
//build a login under views. The vue single file, and then under the router index. In the js import the routing of the login page,
Import the login from "../views/login. Vue ";//path

Const routes=[
{path: '/', redirect: '/login'},//redirect
{path: '/login', component: login},
];
  • Related