Vue3:vue-router 的高级用法

2023-01-16  本文已影响0人  顾北向南

1、路由重定向

2、路由高亮

2.1 默认的高亮 class 类

2.2 自定义路由高亮的 class 类

.router-active {
  background-color: blue;
  color: white;
  font-weight: bold;
}

3、 嵌套路由

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

import Home from './MyHome.vue'
import Movie from './MyMovie.vue'
import About from './MyAbout.vue'

import Tab1 from './tabs/MyTab1.vue'
import Tab2 from './tabs/MyTab2.vue'
import Tab3 from './tabs/MyTab3.vue'

// 创建路由对象
const router = createRouter({
  // 指定路由的工作模式
  history: createWebHashHistory(),
  // 自定义路由高亮的 class 类
  linkActiveClass: 'active-router',
  // 声明路由的匹配规则
  routes: [
    { path: '/', redirect: '/home' },
    { path: '/home', component: Home },
    { path: '/movie', component: Movie },
    {
      path: '/about',
      component: About,
      // 嵌套路由的重定向
      redirect: '/about/tab3',
      // 通过 children 属性嵌套声明子级路由规则
      children: [
        { path: 'tab1', component: Tab1 },
        { path: 'tab2', component: Tab2 },
        { path:  'tab3', component:Tab3},
      ],
    },
  ],
})

// 导出路由对象
export default router

3.1 声明子路由链接和子路由占位符

3.2 通过 children 属性声明子路由规则

4、动态路由匹配

import { createRouter, createWebHashHistory } from 'vue-router'

import Home from './MyHome.vue'
import Movie from './MyMovie.vue'
import About from './MyAbout.vue'

import Tab1 from './tabs/MyTab1.vue'
import Tab2 from './tabs/MyTab2.vue'

// 创建路由对象
const router = createRouter({
  // 指定路由的工作模式
  history: createWebHashHistory(),
  // 自定义路由高亮的 class 类
  linkActiveClass: 'active-router',
  // 声明路由的匹配规则
  routes: [
    { path: '/', redirect: '/home' },
    { path: '/home', component: Home },
    // 动态路由匹配
    { path: '/movie/:mid', component: Movie, props: true },
    {
      path: '/about',
      component: About,
      // 嵌套路由的重定向
      redirect: '/about/tab1',
      // 通过 children 属性嵌套声明子级路由规则
      children: [
        { path: 'tab1', component: Tab1 },
        { path: 'tab2', component: Tab2 },
      ],
    },
  ],
})

// 导出路由对象
export default router

4.1 动态路由的概念

4.2 $route.params 参数对象

4.3 使用 props 接收路由参数

5、编程式导航

5.1 vue-router 中的编程式导航 API

5.2 $router.push

5.2 $router.go

6、命名路由

6.1 使用命名路由实现声明式导航

6.2 使用命名路由实现编程式导航

7、导航守卫

7.1 如何声明全局导航守卫

7.2 守卫方法的 3 个形参

7.3 next 函数的 3 种调用方式

// router.js文件
import { createRouter, createWebHashHistory } from 'vue-router'
// 创建路由对象
const router = createRouter({
  history: createWebHashHistory(),
  routes: [
    { path: '/', redirect: '/home' },
    { path: '/home', component: Home },
    { path: '/main', component: Main },
    { path: '/login', component: Login },
  ],
})

// 全局路由导航守卫
router.beforeEach((to, from, next) => {
const tokenStr = localStorage.getItem('token')

  if (to.path === '/main' && !tokenStr) {
    // 证明用户要访问后台主页
    next('/login')
  } else {
    // 访问的不是后台主页
    next()
  }
})

// 调用
import router from './components/XXX/router'
const app = createApp(App)
// 挂载路由模块
app.use(router)

7.4 结合 token 控制后台主页的访问权限

上一篇下一篇

猜你喜欢

热点阅读