10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { routerInterceptor, routerRemoveInterceptor } from '@/utils/router/interceptor';
|
|
|
|
export function setupInterceptors() {
|
|
routerInterceptor();
|
|
}
|
|
|
|
export function removeInterceptor() {
|
|
routerRemoveInterceptor();
|
|
}
|