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

 

引用Vue并实例化vue

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

引用ios

// 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; } })
相关文章
相关标签/搜索