Vue 路由管理_2023-01-15

2023-01-14  本文已影响0人  微笑碧落

1. 简介

2. 路径这个样子

http://localhost:8080/#/home

3. Vue的路由管理器安装

npm install vue-router@4 -s

4. Vue的路由管理器的使用

import {createRouter, createWebHashHistory} from 'vue-router'
import ResultShow from '../components/ResultShow'

const routes = [
    {path: '/home', component: HomePage, name:,alias:"/home/ll"},
]

const router = createRouter({history: createWebHashHistory(), routes: routes,})

export default  router
//导入路由配置
import router from './config/router'
const app =createApp(App)
app.use(router)

5. route-link

router-link可以理解为一个a元素,用户点击这个link会自动触发path的路径,然后路由管理器根据path在指定的位置渲染路由表上的组件。

<router-link to="some path"></router-link>

6. 路径的高级用法

6.1带参数路径

 {path: '/home/:user/:id', component: HomePage, }

6.2指定参数个数

 {path: '/home/:user*', component: HomePage, }

6.3指定参数是否必须

 {path: '/home/:user?', component: HomePage, name:}

7. 路由的嵌套

const routes = [
    {
      path: '/home', 
      component: HomePage, 
      children:[
        {
          path:friends,
          conponent:Friends
        }
      ]
    },
]

8. 动态页面导航

this.$router.push("/home")
this.$router.push({
  name:,
  params:{},
  query:{},
  path:
})

9. 路由视图的高级用法

9.1路由视图的命名

<router-viem name="main"><router-viem>

9.2 在路由表指定组件对应的具体路由视图

{
  path:"/home"
  components: {
      main:Components1,
      default:Components2
  }
}

10. 路由的重定向

路由的重定向表示访问这个路由后直接跳转至新路由。

{
  path:
  redirect:"/login"
}
{
  path:
  redirect:{
    name:pathName,
  }
}
{
  path:
  redirect: to=>{
      console.log(to)
      return {path:,}
  }
}

11. 路由传参数

     const routes = [
       { path: '/user/:id(\\d+)', component:UserSetting, props:true }
     ]

如果一个路径对应多个路由视图,需要如下

     const routes = [
       { path: '/user/:id(\\d+)', component:UserSetting, props:{routeViewName1: true, routeViewName1: true} }
     ]
     const routes = [
       { path: '/user/:id(\\d+)', component:UserSetting, props:{propName:value} }
     ]
     const routes = [
       { path: '/user/:id(\\d+)', component:UserSetting, props:route=>{
            return {
                          id: route.params.id,
                      }
        } }
     ]

12. 路由守卫

12.1 全局路由

router.beforeEach((to, from)=>{
  console.log(to)
  return false //拒绝此次跳转
})
router.afterEach

12.2 特定路由的路由守卫

routes = [
{
  path:,
  beforeRouteEnter: (to, from, next)=>{} //next为一个函数,路由放行后执行
  beforeRouteEnter: (route)=>{}
 }
]

13. 路由的动态管理

$router.addRoute()
$router.removeRoute()
$router.getRoutes()
上一篇 下一篇

猜你喜欢

热点阅读