Files
AIProd/plugins/router.js
2025-10-10 10:41:39 +08:00

14 lines
251 B
JavaScript

// 设置全局前置守卫和后置守卫
export default ({ app, store }) => {
//全局前置守卫
// app.router.beforeEach((to, from, next) => {
// })
//全局后置守卫
// app.router.afterEach((to, from) => {
// })
}