iview-admin Notice无法使用

用iview-admin做后端框架,经常会用到Notice之类的消息提醒,按照官方给出的栗子,如下
this.$Notice.info({
title: ‘Notification title’,
desc: 'Here is the notification description. Here is the notification description. ’
});

在.vue文件中使用的都没得问题
但是在.js文件中,比如axios.js文件中使用,就会没有效果,也不报错(反正我的控制台没报错)
这时候,只要在该js文件中添加


import iView from 'iview';
-------
iView.Notice.success({
    title: '本页数据已更新!',
    desc: nodesc ? '' : 'Here is the notification  '
})

你可能感兴趣的:(挨踢技术)