18 lines
448 B
JavaScript
18 lines
448 B
JavaScript
import { router } from '@/router'
|
|
|
|
export function toLogin() {
|
|
const currentRoute = unref(router.currentRoute)
|
|
const needRedirect =
|
|
!currentRoute.meta.requireAuth && !['/404', '/login'].includes(router.currentRoute.value.path)
|
|
router.replace({
|
|
path: '/login',
|
|
query: needRedirect ? { ...currentRoute.query, redirect: currentRoute.path } : {},
|
|
})
|
|
}
|
|
|
|
export function toFourZeroFour() {
|
|
router.replace({
|
|
path: '/404',
|
|
})
|
|
}
|