How does vue route redirect
This article mainly explains "how to redirect vue". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to redirect vue".
The specific steps are as follows:
1. First, create a new html project and introduce vue and vue-router into the project
Import Vue from 'vue'
Import Router from 'vue-router'
After the introduction of 2.vue and vue-router, use the Vue.use method to register routes in the project
Vue.use (Router)
3. After the route is registered, execute the following code on the page to define and configure the route
Export default new Router ({
Routes: [
{
Path:'/
Name: 'Home'
Component: HelloWorld
}
]
})
4. Finally, after the route is configured, add a children attribute to the route and use redirect to set the redirect address
Export default new Router ({
Routes: [
{
Path:'/
Name: 'Home'
Component: HelloWorld
Children: [
{path: "/", redirect:'/hone'}
]
}
]
})
Thank you for reading, the above is the content of "how to redirect vue". After the study of this article, I believe you have a deeper understanding of the problem of how to redirect vue, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!