You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import router from "./router";
|
|
|
|
import store from "./store";
|
|
|
|
import { Message } from "element-ui";
|
|
|
|
import NProgress from "nprogress";
|
|
|
|
import "nprogress/nprogress.css";
|
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
|
import { isRelogin } from "@/utils/request";
|
|
|
|
import API from "@/api/index.js";
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
NProgress.configure({ showSpinner: false });
|
|
|
|
|
|
|
|
const whiteList = ["/login", "/register"];
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
router.afterEach(() => {
|
|
|
|
NProgress.done();
|
|
|
|
});
|