Vue在main.js之前单独引用某个依赖如(element-ui)

引用Vue并实例化

import Vue from 'vue';
const v = new Vue();

引用

// token失效登录过期,强制跳转至登录页
axios.interceptors.response.use( response =>{    
   // token失效登录过期,强制跳转至登录页
   if(response.data.code === -3){
    //开始搞事情   v.$notify({   message:
'登录时效已过期,即将强制跳转至登录',   type: 'warning'   })   store.commit("LOGOUT");   router.push("/login");   return response.data; } })

猜你喜欢

转载自www.cnblogs.com/jay-sans/p/11287646.html
今日推荐