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; } })

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM