Vue在main.js之前单独引用某个依赖如(element-ui)
Posted jay-sans
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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; )
以上是关于Vue在main.js之前单独引用某个依赖如(element-ui)的主要内容,如果未能解决你的问题,请参考以下文章