在非前后端分离的项目中使用element 想要使用this.$notify这种通知组件,代码如下
<script>
axios.interceptors.response.use(response => {
return response;
}, err => {
console.log(err.response.data.msg);
this.$notify({
title: err.response.data.msg,
message: "",
duration: 3000
});
Promise.reject(err);
})
</script>
上面的代码报错。$notify not define .
教程提供的方式貌似是要用import 的方式引入,但是我这边不分离的框架貌似不支持import 的方式,同时也没有在Vue的实例里面,请问下要怎么支持这个通知组件的使用?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…