代码拉取完成,页面将自动刷新
import { createRouter, RouteRecordRaw, createWebHistory } from 'vue-router'
const routes: RouteRecordRaw[] = [
{
// path就是地址栏访问的路径
path: '/',
// component就是对于地址的页面文件
component: () => import('../view/Home.vue'),
},
{
path: '/about',
component: () => import('../view/About.vue'),
}
]
// 创建router
const router = createRouter({
// 配置为Hash模式
history: createWebHistory(import.meta.env.BASE_URL),
// 配置toures
routes,
// 路由跳转时返回顶部
scrollBehavior() {
return { top: 0 }
},
})
// 设置前置路由守卫
router.beforeEach((to, from, next) => {
console.log('路由前置:', to, from)
next()
})
// 设置后置路由守卫
router.afterEach((to, from, failure) => {
console.log('路由后置:', to, from, failure)
})
export { router }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。