当前位置: 首页 > article >正文

Vue 3 路由教程

Vue 3 路由教程

1. 路由基础概念

1.1 什么是路由?

路由是现代单页面应用(SPA)中管理页面导航的核心机制。在Vue 3中,我们主要使用vue-router库来实现路由功能。路由允许您在应用程序中无需重新加载整个页面就可以动态切换视图。

1.2 安装vue-router

使用npm安装vue-router:

npm install vue-router@4

2. 基本路由配置

2.1 创建路由实例

import { createRouter, createWebHistory } from 'vue-router'
import Home from './components/Home.vue'
import About from './components/About.vue'

const routes = [
  { path: '/', component: Home },
  { path: '/about', component: About }
]

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

export default router

2.2 在main.js中注册路由

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'

const app = createApp(App)
app.use(router)
app.mount('#app')

3. 路由跳转方法

3.1 声明式导航

在模板中使用<router-link>

<router-link to="/">首页</router-link>
<router-link to="/about">关于</router-link>

3.2 编程式导航

在组件的方法中使用router.push()

// 字符串路径
this.$router.push('/about')

// 对象形式
this.$router.push({ path: '/about' })

// 带参数
this.$router.push({ 
  path: '/user', 
  query: { id: 123 } 
})

4. 路由传参

4.1 动态路由

const routes = [
  // 动态路由参数
  { path: '/user/:id', component: User }
]

// 在组件中获取参数
const route = useRoute()
const userId = route.params.id

4.2 查询参数

// 传递查询参数
this.$router.push({ 
  path: '/search', 
  query: { keyword: 'vue' } 
})

// 获取查询参数
const keyword = route.query.keyword

5. 高级路由技巧

5.1 嵌套路由

const routes = [
  {
    path: '/user',
    component: User,
    children: [
      { path: 'profile', component: UserProfile },
      { path: 'posts', component: UserPosts }
    ]
  }
]

5.2 命名视图

const routes = [
  {
    path: '/',
    components: {
      default: Home,
      sidebar: Sidebar,
      content: MainContent
    }
  }
]

5.3 路由守卫

router.beforeEach((to, from, next) => {
  // 全局前置守卫
  if (to.meta.requiresAuth) {
    // 检查登录状态
    if (!isAuthenticated()) {
      next('/login')
    } else {
      next()
    }
  } else {
    next()
  }
})

6. 常见问题与最佳实践

6.1 处理404页面

const routes = [
  // 其他路由...
  { 
    path: '/:pathMatch(.*)*', 
    name: 'NotFound', 
    component: NotFound 
  }
]

6.2 路由懒加载

const routes = [
  { 
    path: '/about', 
    component: () => import('./components/About.vue') 
  }
]

结语

Vue 3路由提供了强大且灵活的导航机制。通过合理使用路由,您可以创建更加动态和用户友好的单页面应用。


http://www.kler.cn/a/413794.html

相关文章:

  • 【Linux】剧幕中的灵魂更迭:探索Shell下的程序替换
  • iscsi服务器
  • 新型大语言模型的预训练与后训练范式,阿里Qwen
  • 【Bug】el-date-picker组件时间差
  • matlab 实现混沌麻雀搜索算法的光伏MPPT控制仿真
  • 前端项目的动态路由实现(vue)
  • 计算机网络八股整理(三)
  • 计算分数的浮点数值
  • 112. UE5 GAS RPG 制作高亮接口
  • WPF的表格控件 FlexGrid设置行的高度自适应
  • 【优选算法】位运算
  • 面经-综合面/hr面
  • shell脚本_不同脚本的互相调用和重定向操作
  • 【Linux】命令行参数与环境变量
  • 微软企业邮箱:安全可靠的企业级邮件服务!
  • C# 反射详解
  • 优先算法 —— 双指针系列 - 有效三角形的个数
  • Kubernetes(k8s)1.30.7简单快速部署对外部开放的有状态服务MYSQL8(快速有效)
  • 【组件封装】uniapp vue3 封装一个自定义下拉刷新组件pullRefresh,带刷新时间和加载动画教程
  • 什么是Git
  • C语言——指针初阶(一)
  • Zookeeper学习心得
  • linux安全管理-日志审计
  • fatal error in include chain (rtthread.h):rtconfig.h file not found
  • 如何设置爬虫的异常处理?(代码示例)
  • 【Leetcode 每日一题】25. K 个一组翻转链表