2023-03-08 10:02:46 +08:00

10 lines
227 B
TypeScript

import { routerInterceptor, routerRemoveInterceptor } from '@/utils/router/interceptor';
export function setupInterceptors() {
routerInterceptor();
}
export function removeInterceptor() {
routerRemoveInterceptor();
}