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