下面是关于Vue3中路由hash与History的设置的详细攻略:
下面是关于Vue3中路由hash与History的设置的详细攻略:
1. 路由设置
在Vue3中使用路由需要先安装vue-router
,使用以下命令进行安装:
npm install vue-router@4
1.1 history模式
如果使用history模式,则路由使用的是浏览器的history.pushState
和history.replaceState
方法,这样路由就是“干净”的URL,可以去除URL中的#
符号,例如:
const router = createRouter({
history: createWebHistory(),
routes,
})
1.2 hash模式
如果使用hash模式,则路由使用的是浏览器的URL中的#
符号,例如:
const router = createRouter({
history: createWebHashHistory(),
routes,
})
使用createWebHashHistory()
方法来创建hash模式的路由。
2. 设置默认路由
设置默认路由可以让用户在没有输入路由路径时自动跳转到指定页面。
2.1 history模式下设置默认路由
在history模式下设置默认路由需要在路由最后添加一个{path: '*', redirect: '/'}
的路由,例如:
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
component: About,
},
// 设置默认路由
{
path: '*',
redirect: '/',
},
]
2.2 hash模式下设置默认路由
在hash模式下设置默认路由需要在路由最后添加一个`{path: '/'},例如:
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
component: About,
},
// 设置默认路由
{
path: '/',
},
]
这里需要注意的是,hash模式下的默认路由不能使用redirect
属性,因为hash路由不存在重定向问题。
示例说明
下面给出两个具体的示例:
示例1:使用history模式设置默认路由
// 引入Vue Router
import { createRouter, createWebHistory } from 'vue-router'
// 引入组件
import Home from '@/views/Home.vue'
import About from '@/views/About.vue'
// 创建路由实例
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
component: About,
},
// 设置默认路由
{
path: '*',
redirect: '/',
},
],
})
// 导出路由
export default router
这个示例演示了如何使用history模式设置默认路由。
示例2:使用hash模式设置默认路由
// 引入Vue Router
import { createRouter, createWebHashHistory } from 'vue-router'
// 引入组件
import Home from '@/views/Home.vue'
import About from '@/views/About.vue'
// 创建路由实例
const router = createRouter({
history: createWebHashHistory(),
routes: [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
component: About,
},
// 设置默认路由
{
path: '/',
},
],
})
// 导出路由
export default router
这个示例演示了如何使用hash模式设置默认路由。
本文标题为:vue3中关于路由hash与History的设置


- 微信小程序页面导航介绍及使用详解 2024-01-17
- bootstrap Table的使用方法总结 2024-01-17
- Typescript+Vue大型后台管理系统实战 2023-10-08
- Vue3.0 性能提升主要是通过哪几方面体现的? 2023-10-08
- javascript实现的HashMap类代码 2023-12-01
- 表格列表偶数列、奇数列的CSS样式示例 2024-01-03
- 利用momentJs做一个倒计时组件(实例代码) 2023-08-08
- bootstrap select2 动态从后台Ajax动态获取数据的代码 2023-02-23
- 对vue下点击事件传参和不传参的区别详解 2023-12-23
- 微信小程序 自己制作小组件实例详解 2023-12-23